/* ============================================================
   FORUM 3G — Civic Modern Forward
   Aesthetic: forward-looking civic design, full Pfaffnau blue,
   big condensed sans-serif, motion as core element
   Anchor: massive blue numerals 01 / 02 / 03 as roadmap
   ============================================================ */

/* ------------------------------------------------------------
   Schriften — selbst gehostet (kein Google-Fonts-Abruf, DSGVO)
   Familjen Grotesk: Variable Font (wght 400–700), SIL OFL
   Geist Mono: statische Schnitte 400/500/600, SIL OFL
   ------------------------------------------------------------ */

@font-face {
  font-family: "Familjen Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/familjen-grotesk-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Familjen Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/familjen-grotesk-normal-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Familjen Grotesk";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/familjen-grotesk-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/geist-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/geist-mono-500.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/geist-mono-600.woff2") format("woff2");
}

:root {
  /* Background system — clean, modern, slight warmth */
  --bg: #fafaf6;
  --bg-soft: #f1f1ec;
  --bg-deep: #e8e8e1;

  /* Ink — cool, modern, not the warm-black of editorial */
  --ink: #0a0d12;
  --ink-soft: #4a4f56;
  --mute: #8a8f96;
  --line: #d8d8d2;

  /* Pfaffnauer Wappenblau — voller Intensität, single brand color */
  --blue: #0093dd;
  --blue-deep: #006fa8;
  --blue-bright: #00b8ff;

  /* Type — Familjen Grotesk by Letters from Sweden: civic-modern, warm details */
  --sans: "Familjen Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "Courier New", monospace;

  /* Rhythm */
  --gutter: clamp(28px, 5vw, 72px);
  --section-y: clamp(80px, 14vh, 180px);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Sticky-Stack: Ticker oben, Masthead darunter */
  --ticker-h: 36px;
  --masthead-h: 73px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*, *::before, *::after { -webkit-font-smoothing: antialiased; }

/* scroll-padding-top: Anker-Sprünge dürfen nicht unter dem Sticky-Stack
   (Ticker + Masthead) landen, sonst verschwindet die Ziel-Überschrift. */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--ticker-h) + var(--masthead-h) + 12px); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Rendering-Polish: ausgewogene Umbrüche in Headlines,
   weniger Hurenkinder im Fliesstext, deutsche Silbentrennung */
h1, h2, h3 {
  text-wrap: balance;
}
.art-body p,
.chapter__lede,
.article__lede,
.hero__lede {
  text-wrap: pretty;
}
.art-body p,
.chapter__lede {
  hyphens: auto;
}
/* Headlines mit langen Komposita («Staatswaldhütte», «Gemeindeversammlung»)
   müssen auf 320px-Geräten trennen können, sonst horizontaler Scroll */
.art-hero__title,
.art-body h2,
.art-body h3,
.article__title {
  hyphens: auto;
  overflow-wrap: break-word;
}

::selection { background: var(--blue-deep); color: white; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* Tastatur-Fokus — sichtbar auf jedem interaktiven Element */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* Nur für Screenreader: visuell versteckt, aber im Accessibility-Tree */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Skip-Link — unsichtbar bis zum Tastatur-Fokus, dann über allem */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--ink);
  color: white;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 20px;
  transform: translateY(-200%);
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--bg);
  outline-offset: -6px;
}

/* ------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------ */

.wrap {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Arrow utility — forward indicator */
.arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 240ms var(--ease);
}
.arrow::after {
  content: "→";
  font-weight: 500;
  display: inline-block;
  transition: transform 240ms var(--ease);
}
a:hover .arrow,
button:hover .arrow,
.arrow:hover { gap: 12px; }
a:hover .arrow::after,
button:hover .arrow::after,
.arrow:hover::after { transform: translateX(4px); }

/* ------------------------------------------------------------
   Masthead — modern, clean, confident
   ------------------------------------------------------------ */

.masthead {
  position: sticky;
  top: var(--ticker-h);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Nur vertikal — horizontal liefert .wrap das Gutter
     (padding-Shorthand würde es überschreiben) */
  padding-block: 16px;
  gap: 24px;
}

.masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;

  letter-spacing: -0.015em;
  color: var(--ink);
}
.masthead__shield {
  display: block;
  flex-shrink: 0;
}
.masthead__wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.masthead__brand .three-g {
  color: var(--blue);
  font-weight: 700;

}
.masthead__brand .arrow-mark {
  color: var(--blue);
  font-weight: 500;
  margin-left: 2px;
  display: inline-block;
  /* Pfeil-Nudge nur beim Hover (DESIGN.md verbietet Endlos-Loops) */
  transition: transform 240ms var(--ease);
}
.masthead__brand:hover .arrow-mark {
  transform: translateX(3px);
}

.masthead__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.masthead__nav a {
  font-size: 16px;
  font-weight: 600;

  padding: 12px 16px;
  transition: background 200ms var(--ease), color 200ms var(--ease);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.masthead__nav a:hover { background: var(--bg-deep); color: var(--ink); }
.masthead__nav a.is-active { color: var(--blue-deep); }

.masthead__nav a.cta {
  background: var(--ink);
  color: white;
  padding: 11px 20px;
  font-weight: 600;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.masthead__nav a.cta:hover { background: var(--blue); color: white; }

/* Hamburger — hidden on desktop, revealed on mobile */
.masthead__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  position: relative;
  width: 44px;
  height: 44px;
  transition: background 200ms var(--ease);
}
.masthead__burger:hover { background: var(--bg-deep); }
.masthead__burger span {
  display: block;
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  transition: transform 240ms var(--ease), opacity 200ms var(--ease), top 240ms var(--ease);
}
.masthead__burger span:nth-child(1) { top: 14px; }
.masthead__burger span:nth-child(2) { top: 21px; }
.masthead__burger span:nth-child(3) { top: 28px; }

.masthead__burger[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.masthead__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.masthead__burger[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* ------------------------------------------------------------
   Hero — confident, asymmetric, forward
   ------------------------------------------------------------ */

.hero {
  padding: clamp(56px, 10vh, 140px) 0 clamp(48px, 8vh, 120px);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__eyebrow span { display: inline-flex; align-items: center; gap: 8px; }
.hero__eyebrow span + span::before {
  /* Eckiger Trennpunkt — Kanten-Gesetz gilt auch für Dekoration */
  content: ""; width: 4px; height: 4px;
  background: var(--mute);
  margin-right: 4px;
}
.hero__eyebrow strong { color: var(--blue-deep); font-weight: 600; }

.hero__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 40px;
  max-width: 14ch;
}
.hero__title em {
  font-style: normal;
  /* --blue-deep statt --blue: hebt grossen Display-Akzent von 2.98:1 auf ~5:1
     (WCAG 1.4.3 Grosstext). Wappenblau-Identität bleibt über die Wortmarke. */
  color: var(--blue-deep);
}

.hero__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-top: 48px;
}

.hero__lede {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 380;

  line-height: 1.42;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 38ch;
  margin-bottom: 32px;
}
.hero__lede strong { font-weight: 700; color: var(--blue-deep); }

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: white;
  font-size: 16px;
  font-weight: 600;

  padding: 18px 28px;
  border: 1px solid var(--ink);
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}
.hero__cta:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
}
.hero__cta::after {
  content: "→";
  display: inline-block;
  transition: transform 240ms var(--ease);
}
.hero__cta:hover::after { transform: translateX(4px); }

/* Zwei Hero-CTAs nebeneinander: Kontakt primär (gefüllt), Newsletter
   sekundär (Outline). Bricht auf schmalen Screens um. */
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.hero__cta--ghost {
  background: transparent;
  color: var(--ink);
}
.hero__cta--ghost::after { content: none; }
.hero__cta--ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

/* Nächster Anlass — kompakter Teaser in der rechten Hero-Spalte */
.hero__next {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
  justify-self: end;
  width: 100%;
  max-width: 340px;
  transition: border-color 280ms var(--ease);
}
.hero__next:hover {
  border-top-color: var(--blue);
}
.hero__next-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.hero__next-date {
  font-family: var(--sans);
  font-weight: 700;

  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--blue);
}
.hero__next-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.hero__next-more {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  transition: color 200ms var(--ease);
}
.hero__next-more span { transition: transform 240ms var(--ease); }
.hero__next:hover .hero__next-more { color: var(--blue-deep); }
.hero__next:hover .hero__next-more span { transform: translateX(4px); }

/* ------------------------------------------------------------
   Chapters — the design anchor, modern roadmap form
   ------------------------------------------------------------ */

.chapters {
  border-bottom: 1px solid var(--line);
  position: relative;
}

.chapter {
  padding: clamp(60px, 9vh, 120px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.chapter:last-child { border-bottom: none; }

.chapter__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.5fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
/* Grid-Kinder dürfen schmaler werden als ihr Inhalt —
   verhindert horizontalen Overflow auf schmalen Geräten */
.chapter__inner > * { min-width: 0; }

.chapter__num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(120px, 18vw, 260px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: var(--blue);
  position: relative;
}

/* Leiter-Pfeil: steht als eigener Block unter den Ziffern und zeigt nach
   unten (Kapitel-Leiter geht weiter) — absolut positioniert hing er frei
   im Raum, weil .chapter__num die ganze Spalte füllt, nicht nur die Ziffern */
.chapter__num::after {
  content: "→";
  display: block;
  width: 1em;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.18em;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 0.6em;
  transform: rotate(90deg);
  transform-origin: center;
}

/* Intro chapters: word marker instead of numeral, scaled to fit the column */
.chapter__num--word {
  font-size: clamp(64px, 8.5vw, 130px);
  letter-spacing: -0.045em;
  /* Marken-Blau wie die Ziffern 01–04, damit die Kapitel-Leiter EINEN
     Blauton zeigt. Gross/fett → WCAG AA Large (3:1) auf bg-soft erfüllt. */
  color: var(--blue);
}
.chapter--intro .chapter__num::after {
  display: none;
}
.chapter--intro {
  /* visually distinct top of the page — soft tint so the chapter ladder
     still reads as one rhythm, but intro is clearly the preamble */
  background: var(--bg-soft);
}

.chapter__num-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 12px;
}

.chapter__body h2 {
  font-family: var(--sans);
  font-weight: 700;

  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
  /* Lange deutsche Wörter («Mitbestimmung») auf 320px-Geräten */
  hyphens: auto;
  overflow-wrap: break-word;
}

.chapter__lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 28px;
}
.chapter__lede em { font-style: normal; color: var(--blue-deep); font-weight: 600; }

.chapter__points {
  list-style: none;
}
.chapter__points li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 17px;
  font-weight: 500;
  align-items: center;
}
.chapter__points li:last-child { border-bottom: 1px solid var(--line); }
.chapter__points li span:first-child {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue-deep);
  letter-spacing: 0.04em;
}

.chapter__quote {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 28px 32px;
  align-self: end;
  margin-top: 24px;
}
.chapter__quote q {
  font-family: var(--sans);
  font-weight: 500;

  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  display: block;
  quotes: "„" """;
}
.chapter__quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------
   News — clean modular cards, no decorative covers
   ------------------------------------------------------------ */

.news {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--line);
}

.news__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.news__head h2 {
  font-family: var(--sans);
  font-weight: 700;

  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.news__head h2 em { font-style: normal; color: var(--blue-deep); }

.news__head a {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink);
  padding: 14px 18px;
  /* Explizite Properties statt «all»: sonst wird auch die Fokus-Outline
     von 0 auf 2px animiert und erscheint für Tastatur-Nutzer verzögert */
  transition: background 200ms var(--ease), color 200ms var(--ease),
    border-color 200ms var(--ease);
}
.news__head a:hover { background: var(--ink); color: white; border-color: var(--ink); }

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

/* Homepage: neuester Bericht als Featured-Karte mit Cover, zwei kompakte daneben */
.news__grid--home {
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: 1fr;
}
.article--featured {
  grid-row: 1 / 3;
}
.article__cover {
  width: calc(100% + 56px);
  max-width: calc(100% + 56px);
  margin: -28px -28px 12px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article--featured .article__title {
  font-size: clamp(26px, 2.2vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), background 280ms var(--ease);
  position: relative;
  overflow: hidden;
}
.article:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  background: var(--bg);
}

.article__category {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article__category time { color: var(--ink-soft); font-weight: 400; }

.article__title {
  font-family: var(--sans);
  font-weight: 600;

  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.article__lede {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  flex: 1;
  /* Zeilenlänge auch in der breiten Featured-Karte begrenzen */
  max-width: 68ch;
}

.article__readmore {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}
.article__readmore::after {
  content: "→";
  transition: transform 240ms var(--ease);
}
.article:hover .article__readmore::after { transform: translateX(4px); }

/* ------------------------------------------------------------
   People — clean modern grid
   ------------------------------------------------------------ */

.people {
  padding: var(--section-y) 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.people__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: 80px;
  align-items: end;
}
.people__head h2 {
  font-family: var(--sans);
  font-weight: 700;

  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
/* Tiefblau für den Akzent: ~5:1 auf bg-soft, erfüllt WCAG AA sicher (vorher 2.98:1) */
.people__head h2 em { font-style: normal; color: var(--blue-deep); }
.people__head p {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 50ch;
}

.people__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
@media (max-width: 720px) {
  .people__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}
@media (max-width: 440px) {
  .people__grid { grid-template-columns: 1fr; }
}

.person {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.person__portrait {
  aspect-ratio: 1 / 1;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  transition: transform 280ms var(--ease);
}
/* Portrait als echtes <img> (lazy-loadbar) statt background-image */
.person__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.person:hover .person__portrait {
  transform: translateY(-4px);
}
.person__portrait::before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;

  font-size: 80px;
  color: var(--blue);
  opacity: 0.32;
  letter-spacing: -0.04em;
}
.person__portrait::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}
.person:hover .person__portrait::after { transform: scaleX(1); }

.person__name {
  font-family: var(--sans);
  font-weight: 600;

  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.person__role {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------
   Footer — minimal modern
   ------------------------------------------------------------ */

footer {
  background: var(--bg);
  padding: clamp(60px, 10vh, 120px) 0 32px;
  border-top: 1px solid var(--line);
}

.foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.foot__brand h3 {
  font-family: var(--sans);
  font-weight: 700;

  font-size: 32px;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.foot__shield { display: block; flex-shrink: 0; }
.foot__brand h3 > span { display: inline-flex; align-items: baseline; gap: 4px; }
.foot__brand h3 .three-g { color: var(--blue); font-weight: 700; }
.foot__brand h3 .arrow-mark { color: var(--blue); font-weight: 500; }

.foot__brand p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
}

.foot__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.foot__col ul { list-style: none; display: flex; flex-direction: column; }
.foot__col a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 0;
  transition: color 200ms;
}
.foot__col a:hover { color: var(--blue-deep); }
.foot__col a::after {
  content: "→";
  font-size: 11px;
  opacity: 0;
  transition: opacity 200ms, transform 200ms;
  transform: translateX(-4px);
}
.foot__col a:hover::after { opacity: 1; transform: translateX(0); }

.colophon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.colophon strong { color: var(--ink); font-weight: 500; }
.colophon a {
  display: inline-block;
  padding: 14px 0;
  margin: -14px 0;
}

/* ============================================================
   ARTICLE PAGE — modern long-form
   ============================================================ */

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--blue);
  width: 0%;
  z-index: 100;
  transition: width 80ms linear;
}

.art-hero {
  padding: clamp(48px, 8vh, 120px) 0 clamp(40px, 6vh, 100px);
  border-bottom: 1px solid var(--line);
}

.art-hero__crumbs {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 32px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.art-hero__crumbs a {
  padding: 4px 10px;
  background: var(--bg-soft);
  transition: background 200ms;
}
.art-hero__crumbs a:hover { background: var(--bg-deep); color: var(--ink); }
.art-hero__crumbs span.current {
  color: var(--blue-deep);
  padding: 4px 10px;
  background: rgba(0, 147, 221, 0.08);
  font-weight: 600;
}

.art-hero__category {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: var(--blue-deep);
  padding: 6px 14px;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.art-hero__category::before {
  content: "▸";
  font-size: 11px;
}

.art-hero__title {
  font-family: var(--sans);
  font-weight: 700;

  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.038em;
  margin-bottom: 32px;
  max-width: 18ch;
}
.art-hero__title em { font-style: normal; color: var(--blue-deep); }

.art-hero__lede {
  font-family: var(--sans);
  font-weight: 400;

  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.36;
  letter-spacing: -0.012em;
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 48px;
}

.art-hero__byline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.art-hero__avatar {
  width: 48px; height: 48px;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.art-hero__avatar::before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;

  font-size: 18px;
  color: var(--blue-deep);
}

.art-hero__author { font-size: 14px; line-height: 1.4; }
.art-hero__author strong {
  font-family: var(--sans);
  font-weight: 600;

  font-size: 16px;
  display: block;
}
.art-hero__author span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.art-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-align: right;
}
.art-hero__meta strong { color: var(--ink); font-weight: 500; }

/* Cover */
.art-cover {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  max-height: 70vh;
}
.art-cover svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.art-cover__caption {
  position: absolute;
  bottom: 16px; left: var(--gutter);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: white;
  background: var(--ink);
  padding: 6px 12px;
}

/* Body */
.art-body {
  padding: clamp(60px, 9vh, 120px) 0;
  display: grid;
  grid-template-columns: 1fr min(720px, 100%) 1fr;
  row-gap: 28px;
}

.art-body > * { grid-column: 2; }

.art-body p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
}

.art-body p strong { font-weight: 700; color: var(--ink); }
.art-body p em { font-style: normal; color: var(--blue-deep); font-weight: 600; }

.art-body h2 {
  font-family: var(--sans);
  font-weight: 700;

  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 48px;
  margin-bottom: 16px;
  display: block;
}
.art-body h2:has(> .num) {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: baseline;
}
.art-body h2 .num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blue-deep);
  background: rgba(0, 147, 221, 0.1);
  padding: 4px 8px;
  text-align: center;
  align-self: center;
}
.art-body h2 em { font-style: normal; color: var(--blue-deep); }

.art-body h3 {
  font-family: var(--sans);
  font-weight: 600;

  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.018em;
  margin-top: 16px;
  margin-bottom: 4px;
}

.art-body ul, .art-body ol { padding-left: 24px; }
.art-body ul li, .art-body ol li {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 8px;
}

/* Footnotes */
.footnotes {
  grid-column: 2;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.footnotes h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 16px;
}
.footnotes ol { padding-left: 18px; }
.footnotes li { margin-bottom: 8px; }

/* Related */
.related {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.related h2 {
  font-family: var(--sans);
  font-weight: 700;

  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.related h2 em { font-style: normal; color: var(--blue-deep); }
.related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

/* ------------------------------------------------------------
   Reveal animations
   ------------------------------------------------------------ */

@keyframes rise {
  from { transform: translateY(12px); }
  to   { transform: translateY(0); }
}

/* Animations only when the user is OK with motion. Without this guard,
   reduced-motion users (and headless renderers) see opacity:0 forever. */
@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow,
  .hero__title,
  .hero__lede,
  .hero__cta,
  .hero__next,
  .art-hero__category,
  .art-hero__title,
  .art-hero__lede,
  .art-hero__byline { animation: rise 700ms var(--ease) backwards; }

  .hero__title, .art-hero__title { animation-delay: 80ms; }
  .hero__lede, .art-hero__lede { animation-delay: 160ms; }
  .hero__cta, .art-hero__byline { animation-delay: 240ms; }
  .hero__next { animation-delay: 320ms; }
}

/* ------------------------------------------------------------
   Scroll-Reveal — sanfte Fade-Ins beim Scrollen (Brand Guide §5)
   Progressiv: ohne JS (html ohne .js) bleibt alles sichtbar.
   ------------------------------------------------------------ */

@media (prefers-reduced-motion: no-preference) {
  html.js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 640ms var(--ease-out-quart),
      transform 640ms var(--ease-out-quart);
    transition-delay: calc(var(--reveal-i, 0) * 70ms);
  }

  /* Signatur-Numerale: mehr Weg, entschiedeneres Easing.
     Muss VOR .is-revealed stehen, damit der End-Zustand
     (translateY(0)) bei gleicher Spezifität gewinnt. */
  html.js .chapter__num[data-reveal],
  html.js .agenda__event-date[data-reveal] {
    transform: translateY(48px);
    transition-duration: 880ms;
    transition-timing-function: var(--ease-out-expo);
  }

  html.js [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Press-Feedback auf primären Aktionen */
.hero__cta:active,
.agenda__event-rsvp:active,
.newsletter-form button:active {
  transform: scale(0.98);
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */

@media (max-width: 1100px) {
  .chapter__inner { grid-template-columns: 1fr 2fr; gap: 32px; }
  .chapter__quote { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  /* Burger + Overlay-Navigation brauchen JavaScript. Ohne JS:
     kein Burger, die Navigation steht als kompakte Zeile unter dem Logo
     (PRODUCT.md: Inhalte müssen ohne JavaScript erreichbar sein). */
  html.js .masthead__burger { display: inline-block; }

  html:not(.js) .masthead__inner { flex-wrap: wrap; row-gap: 0; }
  html:not(.js) .masthead__nav {
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 2px 18px;
    padding-bottom: 14px;
  }
  html:not(.js) .masthead__nav a {
    font-size: 15px;
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  html:not(.js) .masthead__nav a.cta { padding: 8px 16px; }

  html.js .masthead__nav {
    position: fixed;
    top: calc(var(--ticker-h) + var(--masthead-h));
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100vh - var(--ticker-h) - var(--masthead-h));
    height: calc(100dvh - var(--ticker-h) - var(--masthead-h));
    background: var(--bg, #fafaf6);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 24px 24px 40px;
    z-index: 45;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms var(--ease), transform 240ms var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  html.js .masthead__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  html.js .masthead__nav a {
    font-size: 22px;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }
  html.js .masthead__nav a:last-child { border-bottom: 0; }
  html.js .masthead__nav a.cta {
    margin: 16px 0 0;
    justify-content: center;
    padding: 18px 24px;
    font-size: 18px;
  }
  body.nav-open { overflow: hidden; }

  .hero__layout { grid-template-columns: 1fr; gap: 40px; }
  .hero__next { justify-self: start; max-width: 100%; }

  .news__grid--home { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .article--featured { grid-row: auto; }

  .chapter__inner { grid-template-columns: 1fr; }
  .chapter__num { font-size: clamp(120px, 28vw, 200px); }
  /* Wort-Marker (Wer./Wie./Was.) skalieren mit, sonst gewinnt
     die Regel oben und sprengt den Viewport */
  .chapter__num--word { font-size: clamp(56px, 16vw, 110px); }

  .news__head { flex-direction: column; align-items: flex-start; }
  .news__grid, .related__grid { grid-template-columns: 1fr; }

  .people__head { grid-template-columns: 1fr; }

  .foot { grid-template-columns: 1fr 1fr; }
  .colophon { flex-direction: column; align-items: flex-start; }

  .art-hero__byline { grid-template-columns: auto 1fr; }
  .art-hero__meta { grid-column: 1 / -1; text-align: left; padding-top: 16px; border-top: 1px solid var(--line); }

  /* Touch-Targets: persistente Navigations-Links auf 44px Tap-Höhe heben
     (PRODUCT.md: Zielgruppe 55+, treffsichere Bedienung). Desktop bleibt
     kompakt — diese Anhebung gilt nur im Mobile-/Touch-Breakpoint. */
  .art-hero__crumbs a,
  .art-hero__crumbs span.current {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .foot__col a { min-height: 44px; }
}

@media (max-width: 560px) {
  .foot { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   News-Ticker — sticky top stripe above masthead
   ------------------------------------------------------------ */

.ticker {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--ticker-h);
  background: var(--ink);
  color: var(--bg);
  border-bottom: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  overflow: hidden;
}

.ticker__inner {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
  /* Horizontales Gutter kommt von .wrap — nicht überschreiben,
     sonst klebt der Ticker-Inhalt am Bildschirmrand */
  padding-block: 0;
}

.ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px 0 0;
  margin-right: 14px;
  border-right: 1px solid rgba(250, 250, 246, 0.18);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker__pulse {
  /* Eckiges Puls-Quadrat — Kanten-Gesetz gilt auch für Dekoration */
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--blue-bright);
  box-shadow: 0 0 0 0 rgba(0, 184, 255, 0.6);
  animation: ticker-pulse 2s var(--ease) infinite;
}

@keyframes ticker-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 184, 255, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(0, 184, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 184, 255, 0); }
}

.ticker__viewport {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 60px), transparent 100%);
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  gap: 0;
  animation: ticker-scroll var(--ticker-duration, 60s) linear infinite;
  will-change: transform;
}

.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
  /* Tap-Fläche = volle Ticker-Höhe, nicht nur die Textzeile */
  height: var(--ticker-h);
  color: var(--bg);
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.ticker__item:hover {
  color: var(--blue-bright);
}
.ticker__item:focus-visible {
  color: var(--blue-bright);
  outline: 2px solid var(--bg);
  outline-offset: 2px;
}

.ticker__date {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.02em;
}

.ticker__text {
  font-weight: 500;
}

.ticker__sep {
  display: inline-block;
  margin: 0 16px 0 12px;
  color: var(--blue);
  font-weight: 600;
}

.ticker__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 0 0 14px;
  margin-left: 14px;
  border-left: 1px solid rgba(250, 250, 246, 0.18);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 160ms var(--ease);
}

.ticker__more:hover {
  color: var(--blue-bright);
}
.ticker__more:focus-visible {
  color: var(--blue-bright);
  outline: 2px solid var(--bg);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  /* Auf Touch-Geräten: Ticker hoch genug für 44px-Tap-Targets.
     Masthead und Mobile-Nav folgen automatisch über var(--ticker-h). */
  :root { --ticker-h: 44px; }
  .ticker__label-text { display: none; }
  .ticker__label { padding-right: 10px; margin-right: 10px; }
  .ticker__date { display: none; }
  .ticker__more { padding-left: 10px; margin-left: 10px; }
  .ticker__more span { display: none; }
}

@media (max-width: 480px) {
  .ticker__more { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__pulse { animation: none; }
  .ticker__viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ticker__track { animation: none; transform: none; }
}

/* ------------------------------------------------------------
   Niedrige Viewports (Telefon quer, kleine Laptops im Splitscreen):
   Ticker scrollt mit, statt ein Drittel der Höhe zu blockieren.
   ------------------------------------------------------------ */

@media (max-height: 540px) {
  .ticker { position: static; }
  .masthead { top: 0; }
  html.js .masthead__nav {
    top: var(--masthead-h);
    height: calc(100vh - var(--masthead-h));
    height: calc(100dvh - var(--masthead-h));
  }
}

/* ============================================================
   PRINT — Berichte und Seiten druckbar (Segment E, 75+:
   «Print-Tauglichkeit ist Teil der Inklusion»)
   ============================================================ */

@page {
  margin: 16mm 14mm 18mm;
}

@media print {
  /* Papier ist weiss; Tinten-System auf Druckfarben ziehen */
  :root {
    --bg: #fff;
    --bg-soft: #fff;
    --bg-deep: #fff;
    --ink: #000;
    --ink-soft: #2e2e2e;
    --mute: #555;
    --line: #999;
  }

  html, body {
    background: #fff !important;
    color: #000 !important;
  }

  /* Bildschirm-Möbel haben auf Papier nichts verloren */
  .ticker,
  .skip-link,
  .progress,
  .masthead__burger,
  .masthead__nav,
  .hero__next,
  .hero__cta,
  .news__head a,
  .article__readmore,
  .agenda__event-rsvp,
  .related,
  .newsletter-form,
  .news-cta:not(.news-cta--kontakt),
  .foot__col {
    display: none !important;
  }

  /* Scroll-Reveal: gedruckt ist alles sichtbar, nichts wartet auf Scroll */
  html.js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
  }

  .masthead {
    position: static !important;
    border-bottom: 1.5px solid #000;
  }

  /* Dunkle Flächen → Papier mit Rahmen (Toner sparen, Lesbarkeit) */
  .news-cta--kontakt {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000;
  }
  .news-cta--kontakt .news-cta__title,
  .news-cta--kontakt .news-cta__lede,
  .news-cta--kontakt .news-cta__legal {
    color: #000 !important;
  }
  /* Formular drucken bringt nichts: nur die E-Mail-Adresse zeigen */
  .kontakt-form,
  .kontakt-form__erfolg {
    display: none !important;
  }

  /* Farbflächen-Labels → Rahmen statt Füllung */
  .art-hero__category {
    background: none !important;
    color: #000 !important;
    border: 1px solid #000;
  }
  .art-cover__caption {
    position: static;
    background: none !important;
    color: #000 !important;
    padding: 6px 0 0;
  }

  /* Umbruch-Steuerung */
  h1, h2, h3 { break-after: avoid; }
  figure, img, .art-cover, blockquote, .chapter__quote, .person { break-inside: avoid; }
  p, li { orphans: 3; widows: 3; }
  .art-cover img { max-height: 110mm; object-fit: contain; }

  /* Linkziele im Berichts-Fliesstext ausweisen —
     auf Papier ist ein Link sonst nur unterstrichener Text */
  .art-body a { text-decoration: underline; }
  .art-body a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-family: var(--mono);
    font-size: 8pt;
    color: #555;
    word-break: break-all;
  }
}

