/* ==========================================================================
   schnabellos — Designsystem
   Zielgruppe: ältere Menschen. Große Schrift, hoher Kontrast, klare Flächen.
   Anmutung: Infografik / Plakat statt klassischer Webseite.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Basis-Schriftgröße. Wird vom Schrift-Vergrößerer (js/app.js) überschrieben. */
  --fs-base: 20px;

  /* Farben */
  --paper:        #FBF7F0;  /* Hintergrund, Creme */
  --paper-band:   #F2EADC;  /* abgesetztes Band / Karten-Rückseite */
  --paper-white:  #FFFDF9;  /* Karten */

  --ink:          #1F2B33;  /* Text, Konturen (Petrol-Schwarz) */
  --ink-soft:     #4C5C66;  /* Nebentext */

  --accent:       #E07A28;  /* Bernstein — Flächen, Icons, Markierungen */
  --accent-ink:   #A9530F;  /* Bernstein für TEXT (kontraststark) */
  --accent-soft:  #FBE6D0;  /* Bernstein-Fläche hell */

  --petrol:       #2E6B7A;
  --petrol-ink:   #245666;
  --petrol-soft:  #DDEAEE;

  --green:        #3E7C4A;
  --green-soft:   #E1EEE2;
  --red:          #B33A2B;
  --red-soft:     #F8E3DF;

  /* Linien & Schatten — bewusst hart, plakativ */
  --line-w: 3px;
  --line: var(--line-w) solid var(--ink);
  --radius: 14px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);

  /* Abstände */
  --space-1: .375rem;
  --space-2: .75rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;

  --content: 64rem;   /* Lesebreite */
  --wide: 78rem;      /* Kachelraster */

  /* Schriften */
  --font-text: "Atkinson Hyperlegible", "Verdana", "Segoe UI", system-ui, sans-serif;
  --font-head: "Outfit", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Reset / Grundlagen
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: var(--fs-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.65;
}

img, svg { max-width: 100%; }

:focus-visible {
  outline: 4px solid var(--accent-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Sprunglink für Tastatur / Screenreader */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-2) var(--space-3);
  z-index: 100;
}
.skip-link:focus { left: var(--space-3); top: var(--space-3); }

/* --------------------------------------------------------------------------
   3. Typografie
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-3);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.8vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p, ul, ol { margin: 0 0 var(--space-3); }

p { max-width: 42ch; }          /* kurze Zeilen = leichter zu lesen */
.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 34ch;
}

strong, b { font-weight: 700; }

a {
  color: var(--petrol-ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
a:hover { color: var(--accent-ink); }

/* Auszeichnung im Fließtext, wie ein Textmarker */
.mark {
  background: var(--accent-soft);
  box-shadow: 0 -2px 0 var(--accent-soft), 0 4px 0 var(--accent-soft);
}

.small { font-size: .85rem; color: var(--ink-soft); }

/* Betonte Angabe, bewusst anders als ein Link */
.betont {
  text-decoration: underline;
  text-decoration-color: var(--accent-ink);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

/* Fußnote (z. B. weitere Orte) */
.fussnote-ref {
  color: var(--accent-ink);
  font-size: .55em;
  vertical-align: super;
  line-height: 0;
}
.fussnote {
  font-size: .85rem;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 40ch;
  margin-top: var(--space-3);
}
.fussnote span { color: var(--accent-ink); font-weight: 700; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.wrap {
  width: min(100% - 2.5rem, var(--content));
  margin-inline: auto;
}
.wrap--wide { width: min(100% - 2.5rem, var(--wide)); }

.section {
  padding-block: var(--space-6);
  scroll-margin-top: 5.5rem;   /* Platz für die klebende Sprungleiste */
  border-top: var(--line);
}
.section:first-of-type { border-top: 0; }
.section--band { background: var(--paper-band); }

.stack > * + * { margin-top: var(--space-3); }
.center { text-align: center; }
p.center { max-width: none; }

/* --------------------------------------------------------------------------
   5. Kopfbereich: Wortmarke + Schrift-Vergrößerer
   -------------------------------------------------------------------------- */
.header {
  background: var(--paper);
  padding-block: var(--space-3);
}
.header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}
.logo__icon { width: 1.6em; height: 1.6em; flex: none; color: var(--accent); }
.logo__los { color: var(--accent-ink); }

/* Schriftgröße A / A / A */
.fontsize {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.fontsize__label {
  font-size: .8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fontsize__btns { display: flex; gap: .4rem; }
.fontsize__btn {
  font-family: var(--font-head);
  font-weight: 800;
  background: var(--paper-white);
  color: var(--ink);
  border: var(--line);
  border-radius: 10px;
  min-width: 3rem;
  min-height: 3rem;
  cursor: pointer;
  line-height: 1;
}
.fontsize__btn:nth-child(1) { font-size: .95rem; }
.fontsize__btn:nth-child(2) { font-size: 1.2rem; }
.fontsize__btn:nth-child(3) { font-size: 1.5rem; }
.fontsize__btn:hover { background: var(--accent-soft); }
.fontsize__btn[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

/* --------------------------------------------------------------------------
   6. Sprungmarken-Leiste (klebt oben)
   -------------------------------------------------------------------------- */
.jump {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-block: var(--line-w) solid var(--ink);
}
.jump__list {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}
.jump__link {
  display: block;
  padding: .8rem 1.1rem;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
  border-right: 1px solid rgba(251, 247, 240, .25);
}
.jump__link:hover { background: var(--petrol); color: var(--paper); }
.jump__link[aria-current="true"] { background: var(--accent); color: var(--ink); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: var(--space-5) var(--space-6); }
.hero__grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 56rem) {
  .hero__grid { grid-template-columns: 1.15fr .85fr; }
}
.hero__art {
  border: var(--line);
  border-radius: var(--radius);
  background: var(--paper-white);
  box-shadow: var(--shadow);
  padding: var(--space-4);
  display: grid;
  place-items: center;
}
.hero__art svg { width: 100%; height: auto; max-width: 22rem; color: var(--ink); }

/* Countdown / Stichtag */
.deadline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--red-soft);
  border: var(--line-w) solid var(--red);
  color: var(--red);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
}
.deadline svg { width: 1.4em; height: 1.4em; }

/* --------------------------------------------------------------------------
   8. Bausteine
   -------------------------------------------------------------------------- */

/* 8.1 Schritt mit großer Ziffer */
.steps { display: grid; gap: var(--space-3); }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: start;
  background: var(--paper-white);
  border: var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
}
.step__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  border: var(--line);
  flex: none;
}
.step h3 { margin-bottom: var(--space-1); }
.step p:last-child { margin-bottom: 0; }

/* 8.2 Optionskarten (Infografik-Kacheln) */
.cards {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--paper-white);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-4) var(--space-3) var(--space-3);
  position: relative;
}
.card__icon {
  width: 6.5rem;
  height: 6.5rem;
  margin: 0 auto var(--space-3);
  color: var(--ink);
  display: block;
}
.card h3 { text-align: center; margin-bottom: var(--space-2); }
.card p { max-width: none; }
.card__foot { margin-top: auto; padding-top: var(--space-3); }

/* Eckband, z. B. „Empfehlung“ */
.card__flag {
  position: absolute;
  top: calc(var(--line-w) * -1);
  right: var(--space-3);
  transform: translateY(-50%);
  background: var(--green);
  color: #fff;
  border: var(--line-w) solid var(--ink);
  border-radius: 999px;
  padding: .25rem .9rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  white-space: nowrap;
}

/* 8.3 Icon-Kachel einzeln */
.tile {
  display: grid;
  place-items: center;
  gap: var(--space-2);
  text-align: center;
  background: var(--paper-white);
  border: var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
}
.tile svg { width: 4.5rem; height: 4.5rem; }
.tile__label { font-family: var(--font-head); font-weight: 700; }

/* 8.4 Pro-/Contra-Liste */
.checklist { list-style: none; padding: 0; margin: 0 0 var(--space-3); }
.checklist li {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: .7rem;
  align-items: start;
  padding-block: .35rem;
}
.checklist svg { width: 1.7rem; height: 1.7rem; margin-top: .1em; }
.checklist .yes { color: var(--green); }
.checklist .no  { color: var(--red); }

/* 8.5 Hinweiskästen */
.note {
  border: var(--line);
  border-left-width: 12px;
  border-radius: var(--radius);
  padding: var(--space-3);
  background: var(--paper-white);
}
.note > :last-child { margin-bottom: 0; }
.note__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: var(--space-1);
}
.note__title svg { width: 1.5em; height: 1.5em; flex: none; }
.note--info { border-left-color: var(--petrol); background: var(--petrol-soft); }
.note--warn { border-left-color: var(--red);    background: var(--red-soft); }
.note--ok   { border-left-color: var(--green);  background: var(--green-soft); }
.note--tip  { border-left-color: var(--accent); background: var(--accent-soft); }

/* 8.6 Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 3.4rem;
  padding: .7rem 1.6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  border: var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--accent);
  color: var(--ink);
  transition: transform .1s ease, box-shadow .1s ease;
}
.btn svg { width: 1.3em; height: 1.3em; }
.btn:hover { color: var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.btn--quiet { background: var(--paper-white); }
.btn--dark  { background: var(--ink); color: var(--paper); }
.btn--dark:hover { color: var(--paper); }

/* 8.7 Vergleichstabelle */
.table-scroll { overflow-x: auto; border: var(--line); border-radius: var(--radius); background: var(--paper-white); }
table { border-collapse: collapse; width: 100%; min-width: 48rem; }
th, td { padding: var(--space-2) var(--space-3); text-align: left; border-bottom: 1px solid rgba(31, 43, 51, .18); vertical-align: top; }
thead th {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-head);
  font-size: 1rem;
  position: sticky;
  top: 0;
}
tbody tr:last-child td { border-bottom: 0; }
tbody th { font-family: var(--font-head); font-weight: 800; white-space: nowrap; }

/* Haken und Kreuze in der Vergleichstabelle */
.zelle-ja, .zelle-nein {
  width: 1.4em;
  height: 1.4em;
  vertical-align: -.3em;
  margin-right: .2rem;
}
.zelle-ja   { color: var(--green); }
.zelle-nein { color: var(--red); }

/* 8.8 Kleines Etikett */
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  padding: .15rem .7rem;
  border-radius: 999px;
  border: 2px solid currentColor;
}
.badge--green { color: var(--green); background: var(--green-soft); }
.badge--red   { color: var(--red);   background: var(--red-soft); }
.badge--amber { color: var(--accent-ink); background: var(--accent-soft); }

/* 8.9 Abschnitts-Kopf mit Nummer */
.section__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.section__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  line-height: .8;
  color: var(--accent);
  -webkit-text-stroke: 2px var(--ink);
  flex: none;
}
.section__head h2 { margin: 0; }

/* 8.9b Aufwand: selbst machbar bis Fachbetrieb */
.aufwand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  max-width: none;
  margin: 0 0 var(--space-3);
  padding: .3rem 1rem .3rem .55rem;
  background: var(--paper-white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.2;
}
.aufwand svg { width: 1.7rem; height: 1.7rem; flex: none; }
.aufwand--selbst svg { color: var(--green); }
.aufwand--hilfe  svg { color: var(--accent-ink); }
.aufwand--profi  svg { color: var(--petrol); }

/* 8.10 Frage-Karten („Was will ich eigentlich?“) */
.fragen {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}
.frage {
  background: var(--paper-white);
  border: var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
}
.frage h3 { font-size: 1.2rem; margin-bottom: var(--space-2); }
.frage p, .frage ul { max-width: none; margin-bottom: 0; }
.frage ul { padding-left: 1.2em; }
.frage li { padding-block: .15rem; }

/* 8.11 Ausführlicher Weg (Antenne / Satellit / Internet) */
.option {
  background: var(--paper-white);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-4) var(--space-3);
  margin-bottom: var(--space-5);
  scroll-margin-top: 5.5rem;
}
.option:last-child { margin-bottom: 0; }

.option__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-4);
  border-bottom: var(--line);
}
.option__icon { width: 5.5rem; height: 5.5rem; flex: none; }
.option__head h3 { margin: 0; }
.option__sub { color: var(--ink-soft); font-size: .95rem; margin: .2rem 0 0; max-width: 40ch; }
.option__head .badge { margin-left: auto; }

.option__body { display: grid; gap: var(--space-4); align-items: start; }
@media (min-width: 54rem) {
  .option__body { grid-template-columns: 1.5fr 1fr; }
}

/* 8.12 Nummerierte Anleitung innerhalb eines Wegs */
.anleitung { list-style: none; padding: 0; margin: 0; counter-reset: schritt; }
.anleitung > li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: var(--space-2);
  align-items: start;
  padding-block: .6rem;
  counter-increment: schritt;
}
.anleitung > li + li { border-top: 1px dashed rgba(31, 43, 51, .25); }
.anleitung > li::before {
  content: counter(schritt);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--petrol-soft);
  border: 2px solid var(--ink);
  color: var(--ink);
}
.anleitung h4 { margin: .15rem 0 .2rem; }
.anleitung p { margin-bottom: 0; max-width: none; }
.anleitung .btn { margin-top: var(--space-2); }

/* 8.13 Kostenblock */
.kosten {
  margin: 0;
  background: var(--paper-band);
  border: var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
}
.kosten__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: var(--space-2);
}
.kosten__title svg { width: 1.5em; height: 1.5em; flex: none; }
.kosten__list { margin: 0; }
.kosten__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: .45rem;
}
.kosten__row + .kosten__row { border-top: 1px dashed rgba(31, 43, 51, .3); }
/* auch ausserhalb von .kosten gueltig, z. B. in den Varianten-Karten */
.kosten__row dt { line-height: 1.35; min-width: 0; }
.kosten__row dd {
  margin: 0;
  flex: none;
  font-family: var(--font-head);
  font-weight: 800;
  white-space: nowrap;
  text-align: right;
}
.kosten__hint { margin: var(--space-2) 0 0; font-size: .85rem; color: var(--ink-soft); }

/* Hervorgehobene Empfehlung innerhalb einer Karte */
.empfehlung {
  background: var(--paper-white);
  border: var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin: var(--space-3) 0;
}
.empfehlung__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  margin: var(--space-2) 0 var(--space-2);
}
.empfehlung p { max-width: none; }
.empfehlung > :last-child { margin-bottom: 0; }

/* App-Liste: Name plus ein Satz */
.applist { margin: 0 0 var(--space-3); }
.applist > div { padding-block: .5rem; }
.applist > div + div { border-top: 1px dashed rgba(31, 43, 51, .3); }
.applist dt { font-family: var(--font-head); font-weight: 800; }
.applist dd { margin: .1rem 0 0; font-size: .95rem; line-height: 1.45; }

/* 8.14 Varianten innerhalb eines Wegs (z. B. Antenne mit/ohne Privatsender) */
.option__split {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: var(--line);
}
.option__split > h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
}
.varianten {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}
.variante {
  border: var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
  background: var(--paper-band);
}
.variante--frei { background: var(--green-soft); }
.variante--plus { background: var(--accent-soft); }
.variante--basis { background: var(--petrol-soft); }
.variante > :last-child { margin-bottom: 0; }
.variante p { max-width: none; }
.variante__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: .2rem;
}
.variante__preis {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  margin: 0 0 var(--space-3);
}
.variante__preis > span {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: .2rem;
}
.variante__extra { font-size: .9rem; color: var(--ink-soft); }
.variante__icon { width: 1.6em; height: 1.6em; vertical-align: -.4em; margin-right: .4rem; }
.wenndann__dann + .small { display: block; margin-top: .25rem; }
.variante__extra span[aria-hidden] { color: var(--accent-ink); font-weight: 700; }
.variante__preishinweis { font-size: .95rem; margin-top: calc(var(--space-3) * -1 + .3rem); }
.variante__antenne {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--paper-white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: .6rem .8rem;
  margin-bottom: var(--space-3);
  font-size: .95rem;
  line-height: 1.4;
}
.variante__antenne svg { width: 2.4rem; height: 2.4rem; flex: none; }

/* Aufzaehlung der Sender, ohne Logos */
.senderliste__titel { font-weight: 700; margin: 0 0 var(--space-2); }
.variante__label { font-weight: 700; margin: var(--space-3) 0 var(--space-2); }
.senderliste {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: 0;
  margin: 0 0 var(--space-2);
}
.senderliste li {
  background: var(--paper-white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .1rem .75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
}
.variante .kosten__list { margin-top: var(--space-2); }
.option__split .kosten__hint { margin-top: var(--space-3); }

/* 8.14 Wenn → Dann */
.wenndann {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-3);
  align-items: center;
  background: var(--paper-white);
  border: var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
}
.wenndann__label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .1rem;
}
.wenndann__dann { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; }
.wenndann__arrow { width: 2.5rem; height: 2.5rem; color: var(--accent-ink); flex: none; }
.wenndann p { margin: 0; max-width: none; }
@media (max-width: 46rem) {
  .wenndann { grid-template-columns: 1fr; justify-items: start; }
  .wenndann__arrow { transform: rotate(90deg); }
}

/* --------------------------------------------------------------------------
   9. Fuß
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--space-5);
}
.footer a { color: var(--paper); }
.footer p { max-width: 50ch; }

/* --------------------------------------------------------------------------
   10. Bewegung reduzieren
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   11. Druck — Handzettel zum Weitergeben
   -------------------------------------------------------------------------- */
@media print {
  :root { --fs-base: 11pt; }
  html, body { background: #fff; color: #000; }
  .jump, .fontsize, .skip-link, .no-print { display: none !important; }
  .section { padding-block: 1.2rem; border-top: 1pt solid #000; break-inside: avoid; }
  .card, .step, .note, .tile { box-shadow: none; break-inside: avoid; border: 1pt solid #000; }
  .card__flag, .step__num, .badge { background: #fff !important; color: #000 !important; }
  .footer { background: #fff; color: #000; border-top: 1pt solid #000; }
  .footer a { color: #000; }
  .section__num { -webkit-text-stroke: 0; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; word-break: break-all; }
  p, .lead { max-width: none; }
}
