/* Flyer: DORA. Page-specific layout on top of flyer-common.css — a central
   decision-fork (Art. 24/25 vs. Art. 26/27 TLPT), a full-width checklist, a
   quiet sanctions strip, then the shared process/CTA footer block. */

/* ── Fork ────────────────────────────────────────────────────────────────── */

.flyer-fork { margin-bottom: 1rem; }

.flyer-fork-question {
  background: var(--fp-accent-soft);
  border: 1px solid var(--fp-accent-border);
  border-radius: 10px;
  padding: 0.55rem 1.2rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fp-text);
}

.flyer-fork-connector { position: relative; height: 14px; }
.flyer-fork-connector::before {
  content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 7px;
  background: var(--fp-accent-border); transform: translateX(-50%);
}
.flyer-fork-connector::after {
  content: ''; position: absolute; top: 7px; left: 25%; right: 25%; height: 1px;
  background: var(--fp-accent-border);
}
.flyer-fork-leg {
  position: absolute; top: 7px; width: 1px; height: 7px; background: var(--fp-accent-border);
}
.flyer-fork-leg.is-left { left: 25%; }
.flyer-fork-leg.is-right { right: 25%; transform: translateX(1px); }

.flyer-fork-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.flyer-path-card {
  background: var(--fp-surface);
  border: 1px solid var(--fp-border);
  border-radius: 10px;
  padding: 0.75rem 0.95rem;
  display: flex;
  flex-direction: column;
}

.flyer-path-card h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--fp-text);
  margin: 0 0 0.4rem;
}

.flyer-path-facts { list-style: none; margin: 0 0 0.5rem; padding: 0; display: flex; flex-direction: column; gap: 4px; }

.flyer-path-facts li {
  font-size: 0.72rem;
  color: var(--fp-muted);
  line-height: 1.4;
  padding-left: 13px;
  position: relative;
}
.flyer-path-facts li::before {
  content: ''; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px;
  border-radius: 50%; background: var(--fp-accent);
}

.flyer-path-result {
  margin-top: auto;
  padding-top: 0.45rem;
  border-top: 2px solid var(--fp-accent);
  font-size: 0.7rem;
  line-height: 1.35;
  color: var(--fp-text);
}
.flyer-path-result-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fp-accent);
  margin-bottom: 1px;
}
.flyer-path-result-text { font-weight: 700; }

.flyer-fork-note {
  text-align: center;
  font-size: 0.66rem;
  color: var(--fp-muted-2);
  margin: 0.55rem 0 0;
}

/* ── Checklist ───────────────────────────────────────────────────────────── */

.flyer-checklist-section { margin-bottom: 0.9rem; }

.flyer-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
}

.flyer-checklist li {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  font-size: 0.72rem;
  color: var(--fp-muted);
  line-height: 1.4;
}
.flyer-checklist li svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  color: var(--fp-accent);
}
/* checklist_4 is the longest entry by far — let it run full width so the
   4-column-worth of text doesn't force a squeezed, heavily-wrapped column */
.flyer-checklist li:nth-child(4) { grid-column: 1 / -1; }

/* ── Sanctions strip (deliberately quiet, not alarmist) ─────────────────── */

.flyer-sanctions-strip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--fp-surface);
  border: 1px solid var(--fp-border);
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  font-size: 0.66rem;
  line-height: 1.45;
  color: var(--fp-muted);
  margin-bottom: 1.1rem;
}
.flyer-sanctions-strip svg { flex-shrink: 0; width: 14px; height: 14px; margin-top: 1px; color: var(--fp-muted-2); }

@media (max-width: 700px) {
  .flyer-fork-paths { grid-template-columns: 1fr; }
  .flyer-fork-connector::after,
  .flyer-fork-leg { display: none; }
  .flyer-fork-connector::before { height: 22px; }
}
