/* ============================================================
   polyesterpool.at - Design-System
   Tokens und Werte exakt nach design_handoff_polyesterpool/README.md
   Keine Breakpoints: Layout intrinsisch über auto-fit, flex-wrap, clamp().
   ============================================================ */

:root {
  /* Farben - Variante "Wassergrün", beschlossen 10.08.2026.
     Akzent und Warnfarbe sind bewusst getrennt: Grün trägt die Marke,
     Rot bleibt allein den kritischen Hinweisen vorbehalten und behält
     dadurch seine Signalwirkung. */
  --ink: #12242E;
  --ink-body: #39474D;
  --ink-muted: #5C6A6F;
  --accent: #0E8F86;
  --accent-bg: #E6F2F0;
  --warn: #C0392B;
  --warn-bg: #FBEDEB;
  --primary: #0F4C5C;
  --primary-tint: #E6F0F0;
  --surface: #FFFFFF;
  --surface-2: #EEF3F3;
  --surface-3: #FAFBFB;
  --line: #DCE3E3;
  --line-strong: #12242E;
  --field-border: #C6D0D0;
  --on-dark: #FFFFFF;
  --on-dark-accent: #9FBEBA;
  --on-dark-body: #C3CDCB;
  --on-dark-muted: #7C8A88;
  --dark-line: #2A3A44;

  /* Schrift */
  --ff-ui: Archivo, -apple-system, "Segoe UI", sans-serif;
  --ff-text: "Source Serif 4", Georgia, serif;
  --ff-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  /* Maße */
  --wrap: 1280px;
  --pad: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--ff-text);
  font-size: 17.5px;
  line-height: 1.7;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }
::selection { background: var(--accent); color: #fff; }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }

/* Hilfsklassen -------------------------------------------------------- */

.mono {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.h1 {
  font-family: var(--ff-ui);
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -.035em;
  margin: 0 0 24px;
  text-wrap: balance;
}

.h2 {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.03em;
  margin: 0 0 16px;
}

.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--ink-body);
  text-wrap: pretty;
}

/* Buttons ------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 2px;
}
.btn--primaer { background: var(--primary); color: var(--on-dark); }
.btn--primaer:hover { background: var(--ink); color: var(--on-dark); }
.btn--sekundaer { border: 1px solid var(--ink); color: var(--ink); }
.btn--sekundaer:hover { background: var(--ink); color: var(--on-dark); }

.textlink {
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.textlink:hover { color: var(--accent); }

/* Topbar und Kopf ----------------------------------------------------- */

.topbar {
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.topbar__innen {
  padding-block: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.topbar__text { opacity: .65; }
.topbar__links { display: flex; gap: 14px; flex-wrap: wrap; }
.topbar__links a { color: var(--on-dark); opacity: .65; }
.topbar__links a:hover { opacity: 1; color: var(--on-dark); }

.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.kopf__innen {
  padding-block: 14px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo__signet { flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__wort {
  font-family: var(--ff-ui);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.035em;
}
.logo__tld { color: var(--accent); }
.logo__subline {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

.hauptnav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: var(--ff-ui);
  font-size: 15px;
  font-weight: 500;
}
.hauptnav__punkt {
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.hauptnav__punkt:hover { color: var(--ink); border-bottom-color: var(--accent); }
.hauptnav__punkt--akzent { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }
.hauptnav__punkt.is-aktiv { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }

/* Sektionen ----------------------------------------------------------- */

.sektion { border-bottom: 1px solid var(--line); }
.sektion__innen { padding: 56px var(--pad) 60px; max-width: var(--wrap); margin: 0 auto; }
.sektion--getoent { background: var(--surface-2); }
.sektion--dunkel { background: var(--ink); color: var(--on-dark); }

.sektion__kopf {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sektion__kopf .h2 { margin: 0; }

/* Hero ---------------------------------------------------------------- */

.hero { display: flex; flex-wrap: wrap; align-items: stretch; }
.hero__haupt { flex: 999 1 460px; padding: 56px 40px 48px 0; min-width: 0; }
.hero__seite {
  flex: 1 1 320px;
  min-width: 0;
  border-left: 1px solid var(--line);
  padding: 56px 0 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero__kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
}
.hero .h1 { font-size: clamp(38px, 5.4vw, 66px); line-height: 1.02; }
.hero__lead { max-width: 56ch; margin: 0 0 28px; }
.hero__aktionen { display: flex; gap: 12px; flex-wrap: wrap; }

.faktenbox { border: 1px solid var(--ink); padding: 18px 18px 20px; }
.faktenbox__label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 10px;
}
.faktenbox p:last-child { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-body); }

/* Bildband ------------------------------------------------------------ */

.bildband {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
}
.bildband__gross { grid-column: span 2; }
.bildband > * { background: var(--surface); min-width: 0; }
.bildband__unterschrift { padding: 12px var(--pad); max-width: var(--wrap); margin: 0 auto; }

/* Datenband ----------------------------------------------------------- */

.datenband {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}
.datenband__zelle { padding: 30px 24px; border-right: 1px solid var(--dark-line); }
.datenband__zelle:first-child { padding-left: 0; }
.datenband__zelle:last-child { padding-right: 0; border-right: 0; }
.datenband__wert {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -.03em;
  margin: 0 0 6px;
}
.datenband__label {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-accent);
  margin: 0;
}

/* Kachelraster -------------------------------------------------------- */

.kacheln {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}
.kachel {
  display: block;
  padding: 26px 22px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.kachel:hover { background: var(--surface-2); color: var(--ink); }
.kachel__bild {
  margin: -26px -22px 18px;
  border-bottom: 1px solid var(--line);
}
.kachel__slug {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--accent);
}
.kachel__titel {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.02em;
  margin: 10px 0 8px;
}
.kachel__text { margin: 0 0 14px; font-size: 15px; line-height: 1.55; color: var(--ink-muted); }
.kachel__mehr {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Zweispalter (Kostenüberblick) --------------------------------------- */

.split { display: flex; flex-wrap: wrap; gap: 44px; }
.split__text { flex: 1 1 300px; min-width: 0; }
.split__breit { flex: 1.4 1 420px; min-width: 0; }

/* Tabellen ------------------------------------------------------------ */

.tabelle-rahmen { border: 1px solid var(--ink); background: var(--surface); overflow-x: auto; }
.tabelle { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 620px; }
.tabelle thead tr { background: var(--ink); color: var(--on-dark); }
.tabelle th {
  text-align: left;
  padding: 12px 16px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
}
.tabelle td { padding: 13px 16px; }
.tabelle tbody tr { border-bottom: 1px solid var(--line); }
.tabelle tbody tr:last-child { border-bottom: 0; }
.tabelle .zahl,
.tabelle th.zahl { text-align: right; font-family: var(--ff-mono); font-size: 13.5px; }
.tabelle .zahl--stark { font-weight: 600; }
.tabelle .anmerkung { color: var(--ink-muted); font-size: 14.5px; }

/* Fragenliste --------------------------------------------------------- */

.fragen { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 44px; }
.frage {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.frage:hover { color: var(--accent); }
.frage__nr { font-family: var(--ff-mono); font-size: 11px; color: var(--ink-muted); padding-top: 4px; }
.frage__text { font-family: var(--ff-ui); font-weight: 500; font-size: 17px; }

/* FAQ ----------------------------------------------------------------- */

.faq { border-top: 1px solid var(--ink); }
.faq__eintrag { border-bottom: 1px solid var(--line); }
.faq__frage {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
}
.faq__frage::-webkit-details-marker { display: none; }
.faq__zeichen { font-family: var(--ff-mono); font-size: 18px; color: var(--accent); }
.faq__zeichen::before { content: "+"; }
.faq__eintrag[open] .faq__zeichen::before { content: "−"; }
.faq__antwort { padding-bottom: 18px; }
.faq__antwort p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.65; color: var(--ink-body); }
.faq__antwort p:last-child { margin-bottom: 0; }

/* Hinweisbox ---------------------------------------------------------- */

.hinweis { margin: 28px 0; padding: 16px 18px; }
.hinweis--neutral { border-left: 3px solid var(--primary); background: var(--surface-2); }
.hinweis--kritisch { border: 1px solid var(--warn); background: var(--warn-bg); }
.hinweis__label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 8px;
}
.hinweis__text { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-body); }

/* Bild ---------------------------------------------------------------- */

.bild { margin: 0; }
.bild__flaeche {
  border: 1px solid var(--line);
  background: var(--surface-2);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.bild__flaeche img { width: 100%; height: 100%; object-fit: cover; }
.bild__platzhalter {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink-muted);
  text-align: center;
  padding: 12px;
}
.bild__unterschrift {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--ink-muted);
  margin-top: 10px;
}

/* Quellen und Weiterlesen --------------------------------------------- */

.weiterlesen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.weiterlesen__karte { display: block; border: 1px solid var(--line); padding: 18px; color: var(--ink); }
.weiterlesen__karte:hover { border-color: var(--ink); color: var(--ink); }
.weiterlesen__slug { display: block; font-family: var(--ff-mono); font-size: 10px; color: var(--accent); }
.weiterlesen__titel { display: block; font-family: var(--ff-ui); font-weight: 600; font-size: 16px; margin: 8px 0 6px; }
.weiterlesen__text { display: block; font-size: 14px; color: var(--ink-muted); line-height: 1.5; }

/* Fließtext-Seite (Rechtstexte) --------------------------------------- */

.textseite { max-width: 90ch; padding: 48px var(--pad) 64px; margin: 0 auto; }
.textseite h1 { font-family: var(--ff-ui); font-weight: 800; font-size: clamp(30px, 4vw, 44px); letter-spacing: -.035em; margin: 0 0 28px; }
.textseite h2 { font-family: var(--ff-ui); font-weight: 700; font-size: 22px; letter-spacing: -.02em; margin: 36px 0 12px; }
.textseite h3 { font-family: var(--ff-ui); font-weight: 700; font-size: 18px; margin: 24px 0 8px; }
.textseite p { color: var(--ink-body); margin: 0 0 16px; }
.textseite ul { color: var(--ink-body); }

/* Footer -------------------------------------------------------------- */

.fuss { background: var(--ink); color: var(--on-dark); }
.fuss__spalten {
  padding: 52px var(--pad) 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.fuss__titel {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-accent);
  margin: 0 0 14px;
}
.fuss__links { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.fuss__links a { color: var(--on-dark-body); }
.fuss__links a:hover { color: var(--on-dark); }
.fuss__feinzeile {
  padding: 20px;
  border-top: 1px solid var(--dark-line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.fuss__rechtstexte { display: flex; gap: 18px; }
.fuss__feinzeile a { color: var(--on-dark-muted); }
.fuss__feinzeile a:hover { color: var(--on-dark); }

/* Rechner (Template 4) ------------------------------------------------- */

.rechner { display: flex; flex-wrap: wrap; gap: 0; padding-bottom: 48px; }
.rechner__eingaben { flex: 1 1 320px; min-width: 0; padding-right: 40px; }
.rechner__ergebnis {
  flex: 1.1 1 340px;
  min-width: 0;
  border-left: 1px solid var(--line);
  padding-left: 40px;
}

.feld { margin-bottom: 22px; }
.feld__kopf { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.feld__name { font-family: var(--ff-ui); font-weight: 600; font-size: 15px; }
.feld__wert { font-family: var(--ff-mono); font-size: 14px; color: var(--primary); }
.feld input[type=range] { width: 100%; height: 4px; accent-color: var(--primary); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 13.5px;
  padding: 9px 13px;
  border-radius: 2px;
  cursor: pointer;
  text-align: left;
  border: 1px solid var(--field-border);
  background: var(--surface);
  color: var(--ink-body);
}
.chip:hover { border-color: var(--ink); }
.chip.is-aktiv { background: var(--primary); border-color: var(--primary); color: var(--on-dark); }

.rechner__hinweis { margin: 28px 0 0; font-size: 14px; line-height: 1.5; color: var(--ink-muted); }

.ergebnis__summe {
  font-family: var(--ff-ui);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0 0 10px;
}
.ergebnis__zeile { font-family: var(--ff-mono); font-size: 12.5px; color: var(--ink-muted); margin: 0 0 6px; }

.balken { margin: 26px 0 0; }
.balken__zeile { display: grid; grid-template-columns: 1fr; gap: 4px; margin-bottom: 16px; }
.balken__name { font-family: var(--ff-ui); font-weight: 600; font-size: 14px; }
.balken__spur { display: block; height: 6px; background: var(--line); }
.balken__wert { display: block; height: 6px; background: var(--primary); }
.balken__wert--2 { background: #3B8189; }
.balken__wert--3 { background: var(--accent); }
.balken__zahl { font-family: var(--ff-mono); font-size: 12.5px; color: var(--ink-body); }

.ergebnis__betrieb { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--ink); }
.ergebnis__fussnote { margin: 22px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-muted); }

/* Hero mit Hintergrundfoto -------------------------------------------- */
/* Das Foto liegt über die volle Breite, ein weißer Verlauf blendet es nach
   links aus. Der Text bleibt dadurch in --ink und braucht keine Weißschrift
   auf wechselndem Untergrund. */

.hero-bild {
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(90deg,
      #FFFFFF 0%,
      rgba(255, 255, 255, .98) 34%,
      rgba(255, 255, 255, .88) 50%,
      rgba(255, 255, 255, .48) 64%,
      rgba(255, 255, 255, .08) 82%,
      rgba(255, 255, 255, 0) 100%),
    var(--hero-bild, url("/img/hero-band.webp?v=3"));
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto, cover;
}
.hero-bild__innen {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 64px;
}
.hero-bild__text { max-width: 68ch; }
.hero-bild .hero__lead { max-width: 60ch; }

/* Unter 780px steht der Text über dem Bild statt daneben - dort trägt ein
   senkrechter Verlauf. Der einzige Breakpoint im Projekt, und zwar aus
   Lesbarkeitsgründen, nicht wegen des Layouts. */
@media (max-width: 780px) {
  .hero-bild {
    background-image:
      linear-gradient(180deg,
        #FFFFFF 0%,
        rgba(255, 255, 255, .96) 45%,
        rgba(255, 255, 255, .72) 70%,
        rgba(255, 255, 255, .55) 100%),
      var(--hero-bild, url("/img/hero-band.webp?v=3"));
    background-position: center bottom;
  }
  .hero-bild__innen { min-height: 420px; }
}

/* Kurzdefinition als Streifen unter dem Hero */

.kurzdef { padding-block: 26px 30px; }
.kurzdef__label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 14px;
}
.kurzdef__liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.kurzdef__liste li {
  background: var(--surface-2);
  padding: 14px 18px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-body);
}

/* Bundesland-Auswahl --------------------------------------------------- */

.laender {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}
.laender__link {
  background: var(--surface);
  padding: 15px 18px;
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}
.laender__link:hover { background: var(--surface-2); color: var(--accent); }
/* Bundesland ohne eigene Seite: sichtbar, aber erkennbar kein Link. */
.laender__link--offen { color: var(--ink-muted); cursor: default; }
.laender__link--offen:hover { background: var(--surface); color: var(--ink-muted); }

/* Hervorgehobenes Wort in der H1 ---------------------------------------- */
/* line-height bleibt bei 1: unitlos vererbt würde die Zeile mit dem größeren
   Wort auseinanderlaufen und der Absatz bekäme ungleiche Zeilenabstände. */

.h1__akzent {
  color: var(--accent);
  font-size: 1.18em;
  line-height: 1;
}

/* Template 3 - Ratgeber-Artikel ---------------------------------------- */

.artikel-layout { display: flex; flex-wrap: wrap; gap: 48px; }
.artikel { flex: 999 1 520px; min-width: 0; }
.artikel-seite { flex: 1 1 230px; min-width: 0; }
.artikel-seite__innen { position: sticky; top: 96px; }

.artikel__lead { font-size: 20px; line-height: 1.6; color: var(--ink); margin: 0 0 32px; }
.artikel h2 {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -.03em;
  margin: 44px 0 14px;
  scroll-margin-top: 90px;
}
.artikel h3 { font-family: var(--ff-ui); font-weight: 700; font-size: 19px; margin: 28px 0 8px; }
.artikel p { color: var(--ink-body); margin: 0 0 18px; }
.artikel ul { color: var(--ink-body); padding-left: 20px; }
.artikel li { margin-bottom: 8px; }
.artikel .tabelle-rahmen { margin: 24px 0 10px; }
.artikel__tabellentitel {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--ink-muted);
  margin: 0 0 24px;
}

.inhalt__titel {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.inhalt__liste { list-style: none; margin: 0 0 28px; padding: 0; border-top: 1px solid var(--line); }
.inhalt__liste li { border-bottom: 1px solid var(--line); }
.inhalt__liste a {
  display: block;
  padding: 9px 0;
  font-family: var(--ff-ui);
  font-size: 14px;
  color: var(--ink-body);
}
.inhalt__liste a:hover { color: var(--accent); }

.teaser { border: 1px solid var(--primary); background: var(--primary-tint); padding: 18px; }
.teaser__label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 8px;
}
.teaser__titel { font-family: var(--ff-ui); font-weight: 700; font-size: 17px; margin: 0 0 8px; }
.teaser p { font-size: 14.5px; line-height: 1.5; color: var(--ink-body); margin: 0 0 12px; }

/* Bildpaar im Artikel --------------------------------------------------- */

.bildpaar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  margin: 28px 0 10px;
}
.artikel .bild { margin: 28px 0 10px; }
.artikel .bildpaar .bild { margin: 0; }

/* Template 2 - Cluster-Hub --------------------------------------------- */

.hub-kopf { display: flex; flex-wrap: wrap; gap: 44px; padding: 40px var(--pad) 52px; max-width: var(--wrap); margin: 0 auto; }
.hub-kopf__text { flex: 999 1 460px; min-width: 0; }
.hub-kopf__seite { flex: 1 1 300px; min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.hub-kopf__text p { color: var(--ink-body); margin: 0 0 18px; }
.hub-kicker {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.faktenliste { border: 1px solid var(--ink); padding: 18px; }
.faktenliste dl { margin: 0; }
.faktenliste div { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px dotted var(--line); }
.faktenliste div:last-child { border-bottom: 0; }
.faktenliste dt { font-family: var(--ff-ui); font-weight: 500; font-size: 14.5px; color: var(--ink-body); margin: 0; }
.faktenliste dd { font-family: var(--ff-mono); font-size: 13px; text-align: right; margin: 0; }

.ablauf { background: var(--ink); color: var(--on-dark); }
.ablauf__raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--dark-line);
  max-width: var(--wrap);
  margin: 0 auto;
}
.ablauf__schritt { background: var(--ink); padding: 26px 22px 30px; }
.ablauf__nr { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; color: var(--accent); }
.ablauf__titel { font-family: var(--ff-ui); font-weight: 600; font-size: 17px; margin: 10px 0 8px; }
.ablauf__text { font-size: 14.5px; line-height: 1.55; color: #9FBEBA; margin: 0; }

/* Template 7 - Datenliste ---------------------------------------------- */

.filterleiste {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 24px 0 12px;
}
.filterleiste input[type=search] {
  flex: 1 1 220px;
  font-family: var(--ff-mono);
  font-size: 13px;
  padding: 9px 12px;
  border: 1px solid var(--field-border);
  border-radius: 2px;
  background: var(--surface);
  color: var(--ink);
}
.filterleiste input[type=search]:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.treffer {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.tabelle th[data-sort] { cursor: pointer; user-select: none; }
.tabelle th[data-sort]::after { content: " \21C5"; opacity: .5; }
.tabelle th[aria-sort=ascending]::after { content: " \2191"; opacity: 1; }
.tabelle th[aria-sort=descending]::after { content: " \2193"; opacity: 1; }
