/* Verbraucherspiegel – Konzept g1 „Rot-Leiste · Merriweather“ (Klon von f3: gleiches Layout, gleiche Komponenten, Abstände, Menü, Scrollspy, Leseleiste und JS;
   geändert sind nur Schriftpaar, behutsame Headline-Grade und das Logo-Zeichen)
   Markenfarbe Grün #55B611 als Fläche: Kopfleiste über die volle Breite (weißes Zeichen, weiße einzeilige Wortmarke, weiße Navigation – Kontrast 2,6:1, Referenz-Look wie verbrauchervergleich.de), Leseleiste; Bildmarke im Fuß in Grün.
   Text Schwarz #111111 · Weiß · Grau #6B6B6B · neutrale Haarlinien · dunkleres Grün #3A7A0C für Links, Zitatmarker, aktive TOC-Zeile, Fokusring
   (Kontrast auf Weiß 6,77:1). Kein Blau, kein Orange, kein Anthrazit.
   Merriweather 700 (Headlines) + Lato 400/700 (Fließtext/UI/Navigation); Wortmarke Archivo 700.
   Zeichen 45 „Offenbefund“: Prüfhaken im oben rechts offenen Quadrat, gerade Fassung mit stumpfen Enden und Gehrungsecken, Haken mit eckigen Enden.
   Struktur nur durch Typografie, Weißraum, Ausrichtung und Haarlinien – keine Boxen, keine Chips, keine farbigen Linien unter Überschriften. */

:root {
  --paper: #FFFFFF;
  --ink: #111111;
  --muted: #6B6B6B;
  --hair: #DADADA;
  --brand: #55B611;   /* Grün #55B611 (Betreiber-Entscheid 10.09.2026), nur Flächen: Kopfleiste, Leseleiste, Logo-Zeichen */
  --accent: #3A7A0C;  /* dunkleres Grün, Schrift auf Weiß: Links, Zitatmarker, aktive TOC-Zeile, Fokusring (5,3:1) */
  --head-bg: var(--brand);
  --head-fg: #FFFFFF; /* Wortmarke und Navigation weiß auf der grünen Leiste (2,6:1, Referenz-Look; Schwarz #111111 ergäbe 7,2:1) */
  --track: #E6E6E6;   /* heller Track der Leseleiste */

  /* Hooks für die eingebetteten SVG-Illustrationen */
  --vs-ink: #111111;
  --vs-accent: #3A7A0C;
  --vs-muted: #6B6B6B;
  --vs-paper: #FFFFFF;

  --serif: "Merriweather", Georgia, "Times New Roman", serif; /* Headline-Slot: Merriweather 700 */
  --sans: "Lato", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --wrap: 76rem;
  --measure: 36em;
}

/* ---------- Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 60em) { body { font-size: 1.0625rem; } }

img, svg { max-width: 100%; }
img { display: block; height: auto; }
a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
/* Merriweather 700 läuft breit und mit großer x-Höhe: Headline-Grade gegenüber f3 um rund 6 % gesenkt, Laufweite und Zeilen leicht geöffnet; Raster und Abstände wie f3 */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; margin: 0; color: var(--ink); }
h1 a, h2 a, h3 a { color: inherit; text-decoration: none; }
h1 a:hover, h2 a:hover, h3 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.08em; }
p { margin: 0; }
ol, ul { margin: 0; padding: 0; }
time { font-variant-numeric: tabular-nums; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 60em) { .wrap { padding-inline: 2.5rem; } }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Kleinkapitälchen-Zeile – das Rubriken- und Kicker-Vokabular dieses Konzepts */
.caps {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
.caps a { color: inherit; text-decoration: none; }
.caps a:hover { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; }
.caps .sep { margin-inline: 0.45em; }
/* Nach dem Trennpunkt darf die Kicker-Zeile umbrechen */
.caps .sep::after { content: "\200B"; }

/* ---------- Kopf: rote Leiste über die volle Breite (Referenz verbrauchervergleich.de) ---------- */
.site-head { position: relative; background: var(--head-bg); color: var(--head-fg); }
/* Artikelseiten: Kopfleiste bleibt oben, die Leseleiste sitzt an ihrem unteren Rand */
.site-head.is-sticky { position: sticky; top: 0; z-index: 30; }
.site-head :focus-visible { outline-color: var(--head-fg); }
.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}
.brand { display: inline-flex; align-items: center; min-width: 0; color: var(--head-fg); text-decoration: none; }
.brand svg { height: 2.4rem; width: auto; max-width: 100%; display: block; }
@media (min-width: 60em) { .brand svg { height: 3rem; } .head-row { padding-block: 0.9rem; } }

/* Leseleiste: 2 px Rot auf hellem Track, unter der grünen Leiste, durch 1 px Weiß abgesetzt (Fortschritt = gelesener Anteil des Artikels) */
.readbar { height: 2px; box-sizing: content-box; border-top: 1px solid var(--paper); background: var(--track); pointer-events: none; }
.readbar span { display: block; height: 100%; width: 0; background: var(--brand); }

.nav-main { display: none; }
.nav-main a { color: var(--head-fg); text-decoration: none; font-size: 0.95rem; font-weight: 600; margin-left: 1.75rem; }
.nav-main a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.25em; }

.rubriken-line { display: none; }

/* Mobiles Menü: <details>, geschlossen beim Start – Auslöser weiß auf Rot, Panel weiß */
.menu { position: static; flex: none; }
.menu > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.35rem 0.1rem;
  color: var(--head-fg);
}
.menu > summary::-webkit-details-marker { display: none; }
.menu-icon { position: relative; display: inline-block; width: 1.25rem; height: 0.8rem; }
.menu-icon::before, .menu-icon::after, .menu-icon span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--head-fg);
}
.menu-icon::before { top: 0; }
.menu-icon span { top: calc(50% - 1px); }
.menu-icon::after { bottom: 0; }
.menu[open] .menu-icon span { opacity: 0; }
.menu[open] .menu-icon::before { top: calc(50% - 1px); transform: rotate(45deg); }
.menu[open] .menu-icon::after { bottom: calc(50% - 1px); transform: rotate(-45deg); }

.menu-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 1.25rem 1.25rem 1.75rem;
  z-index: 20;
}
.menu-panel nav a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--hair);
}
.menu-panel nav a:last-child { border-bottom: 0; }
.menu-panel .caps { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.menu-panel .rubriken a { font-family: var(--sans); font-size: 1rem; font-weight: 600; letter-spacing: 0; padding: 0.55rem 0; }

@media (min-width: 60em) {
  .menu { display: none; }
  .nav-main { display: flex; align-items: center; }
  .rubriken-line { display: block; border-bottom: 1px solid var(--hair); }
  .rubriken-line .caps { padding-block: 0.6rem; }
  .rubriken-line .caps .label { color: var(--ink); margin-right: 1.25rem; }
  .rubriken-line .caps a { margin-right: 1.75rem; }
}

/* ---------- Startseite: Aufmacher ---------- */
.lead { padding-top: 1.75rem; }
.lead-figure { margin: 0; }
.lead-figure img, .lead-figure .img-fallback {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.img-fallback { display: block; background: var(--hair); }
.lead-grid { display: grid; gap: 1.25rem; padding-top: 1.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--ink); }
/* Mobil-Untergrenze so, dass „Gelenkbeschwerden“ in Merriweather 700 ab 320 px in eine Zeile passt */
.lead h1 { font-size: clamp(1.65rem, 7.5vw, 3.5rem); line-height: 1.08; margin-top: 0.4rem; overflow-wrap: anywhere; }
.lead .dek { font-size: 1.05rem; line-height: 1.55; color: var(--ink); max-width: 34em; }
.lead .meta { margin-top: 1rem; font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.lead .meta a { color: var(--accent); }
.lead .more-link { display: inline-block; margin-top: 0.9rem; font-weight: 600; }
@media (min-width: 60em) {
  .lead { padding-top: 2.5rem; }
  .lead-figure img, .lead-figure .img-fallback { aspect-ratio: 5 / 2; }
  .lead-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); column-gap: 4rem; align-items: start; padding-top: 2rem; padding-bottom: 3rem; }
  .lead h1 { font-size: clamp(2.4rem, 4.4vw, 3.5rem); }
  .lead .dek { font-size: 1.15rem; padding-top: 0.9rem; }
}

/* ---------- Startseite: Abschnitte ---------- */
.section { padding-top: 2.25rem; }
.sec-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.25rem 1rem; margin-bottom: 0.25rem; }
.sec-title { font-size: 1.6rem; }
.sec-more { font-size: 0.9rem; font-weight: 600; white-space: nowrap; margin-left: auto; } /* rutscht bei schmalen Breiten („Alle Vergleichstests →“) rechtsbündig in eine zweite Zeile */
.sec-note { font-size: 0.85rem; color: var(--muted); }

/* Artikelvorschau = Textliste mit Datumsspalte und Haarlinien */
.list { list-style: none; border-top: 1px solid var(--ink); }
.row {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1rem;
  row-gap: 0.15rem;
  padding: 1.1rem 0 1.25rem;
  border-bottom: 1px solid var(--hair);
}
.row-date { grid-column: 1; font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.row-body { grid-column: 1; min-width: 0; }
.row .ad { grid-column: 2; grid-row: 1; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); align-self: start; line-height: 1.5; padding-top: 0.1rem; }
.row .kicker { margin-bottom: 0.3rem; }
.row h3 { font-size: 1.3rem; line-height: 1.2; }
.row .dek { margin-top: 0.45rem; color: var(--muted); font-size: 0.95rem; max-width: 42em; }
@media (min-width: 60em) {
  .section { padding-top: 3.5rem; }
  .row { grid-template-columns: 9rem minmax(0, 1fr) 6rem; column-gap: 2rem; padding: 1.4rem 0 1.6rem; }
  .row-date { grid-column: 1; padding-top: 0.3rem; font-size: 0.9rem; }
  .row-body { grid-column: 2; }
  .row .ad { grid-column: 3; text-align: right; padding-top: 0.35rem; }
  .row h3 { font-size: 1.5rem; }
  .row .dek { font-size: 1rem; }
}

/* Rückrufe: drei nüchterne Zeilen */
.recalls .row { grid-template-columns: 1fr; row-gap: 0.2rem; padding: 0.9rem 0 1rem; }
.recalls .row-body p { font-size: 0.95rem; line-height: 1.5; }
.recalls .row-body .reason { color: var(--muted); }
.recalls .src { font-size: 0.82rem; color: var(--muted); }
@media (min-width: 60em) {
  .recalls .row { grid-template-columns: 9rem minmax(0, 1fr) 13rem; column-gap: 2rem; padding: 1rem 0 1.1rem; }
  .recalls .row-date { padding-top: 0.1rem; }
  .recalls .src { grid-column: 3; text-align: right; padding-top: 0.15rem; }
  .recalls .row-body p { font-size: 1rem; }
}

/* Arbeitsweise: ein Satz, groß gesetzt, ohne Fläche */
.method { padding-top: 3rem; padding-bottom: 3rem; }
.method .caps { margin-bottom: 0.9rem; }
.method p.statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.7vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: 0;
  max-width: 34em;
}
.method p.statement + p.statement { margin-top: 1.1rem; } /* zweiter Absatz der Arbeitsweise (subjektive Kriterien = Meinung der Redaktion) */
@media (min-width: 60em) { .method { padding-top: 4.5rem; padding-bottom: 4.5rem; } }

/* ---------- Fuß ---------- */
.site-foot { border-top: 1px solid var(--ink); padding-block: 1.75rem 2.5rem; }
.foot-row { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; justify-content: space-between; }
.foot-brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); text-decoration: none; font-family: var(--sans); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; }
.foot-brand svg { height: 1.6rem; width: auto; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 0.35rem 1.4rem; font-size: 0.9rem; }
.foot-nav a { color: var(--ink); text-decoration: none; }
.foot-nav a:hover { text-decoration: underline; text-decoration-thickness: 1px; }
.foot-copy { margin-top: 1.25rem; font-size: 0.82rem; color: var(--muted); }

/* ---------- Artikelseite ---------- */
.article-head { max-width: 46rem; margin-inline: auto; padding-top: 2rem; }
.article-head .kicker { margin-bottom: 1rem; }
.article-head h1 { font-size: clamp(1.65rem, 7.3vw, 3.25rem); line-height: 1.08; overflow-wrap: anywhere; }
.article-head .dek { margin-top: 1.25rem; font-size: 1.1rem; line-height: 1.5; color: var(--ink); max-width: 32em; }
.article-head .meta { margin-top: 1.25rem; padding-top: 0.9rem; border-top: 1px solid var(--hair); font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.article-head .meta .byline { color: var(--ink); }
.hero { margin: 1.75rem auto 0; max-width: 46rem; }
.hero img, .hero .img-fallback { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
@media (min-width: 60em) {
  .article-head { padding-top: 3.25rem; }
  .article-head h1 { font-size: clamp(2.4rem, 4.2vw, 3.25rem); }
  .article-head .dek { font-size: 1.2rem; }
  .hero { margin-top: 2.5rem; }
}

.article-grid { display: grid; grid-template-columns: minmax(0, 1fr); padding-top: 1.5rem; }
.article-col { min-width: 0; max-width: var(--measure); margin-inline: auto; width: 100%; }
@media (min-width: 60em) {
  .article-grid { grid-template-columns: minmax(0, 1fr) minmax(0, var(--measure)) minmax(0, 1fr); column-gap: 3rem; padding-top: 2.5rem; }
  .toc-side { grid-column: 1; justify-self: end; width: 100%; max-width: 15rem; }
  .article-col { grid-column: 2; font-size: 1.125rem; }
}

/* Sprungziele landen unterhalb der festen Kopfleiste */
.vs-section, .vs-references, .vs-ref { scroll-margin-top: 5.5rem; }

/* Inhaltsverzeichnis – Randspalte (Desktop) und einklappbar (mobil) */
.toc-side { display: none; }
.toc-mobile { width: 100%; max-width: var(--measure); margin-inline: auto; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.toc-mobile > summary { list-style: none; cursor: pointer; padding: 0.8rem 0; display: flex; justify-content: space-between; align-items: center; }
.toc-mobile > summary::-webkit-details-marker { display: none; }
.toc-mobile > summary::after { content: "+"; font-family: var(--sans); font-weight: 500; font-size: 1.4rem; line-height: 1; color: var(--ink); }
.toc-mobile[open] > summary::after { content: "−"; }
.toc-list { list-style: none; counter-reset: toc; padding-bottom: 0.75rem; }
.toc-list li { counter-increment: toc; display: grid; grid-template-columns: 1.6rem 1fr; column-gap: 0.4rem; padding: 0.35rem 0; font-size: 0.9rem; line-height: 1.4; }
.toc-list li::before { content: counter(toc, decimal-leading-zero); color: var(--muted); font-size: 0.74rem; letter-spacing: 0.04em; padding-top: 0.15rem; font-variant-numeric: tabular-nums; }
.toc-list a { color: var(--ink); text-decoration: none; }
.toc-list a:hover { text-decoration: underline; text-decoration-thickness: 1px; }
/* Scrollspy: aktuelle Sektion in Akzentfarbe, halbfett; Ziffer als kleiner Marker */
.toc-list a[aria-current="true"] { color: var(--accent); font-weight: 600; }
.toc-list li.is-active::before { color: var(--accent); font-weight: 600; }
@media (min-width: 60em) {
  .toc-mobile { display: none; }
  .toc-side { display: block; position: sticky; top: 6.5rem; align-self: start; border-top: 1px solid var(--ink); padding-top: 0.75rem; }
  .toc-side .caps { margin-bottom: 0.5rem; }
  .toc-side .toc-list li { font-size: 0.84rem; color: var(--muted); }
  .toc-side .toc-list a { color: var(--muted); }
  .toc-side .toc-list a:hover { color: var(--ink); }
  .toc-side .toc-list a[aria-current="true"] { color: var(--accent); }
}

/* ---------- Artikelkörper (v2-Hooks) ---------- */
.vs-article-body { line-height: 1.65; }
.vs-article-body p { margin: 0 0 1.15em; }
.vs-article-body p:last-child { margin-bottom: 0; }
.vs-article-body a { overflow-wrap: anywhere; }

/* Kernaussagen: eingerückte, nummerierte Sätze – kein Kasten */
.vs-lead { margin: 0 0 2.75rem; padding: 1.1rem 0 1.4rem; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--hair); }
.vs-lead-title { font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.9rem !important; }
.vs-lead ul { list-style: none; counter-reset: lead; margin: 0; padding: 0; }
.vs-lead li { counter-increment: lead; display: grid; grid-template-columns: 2.4rem minmax(0, 1fr); column-gap: 0.5rem; padding: 0.45rem 0 0.45rem 0.5rem; font-size: 1.02rem; line-height: 1.5; }
.vs-lead li::before { content: counter(lead); font-family: var(--serif); font-weight: 700; font-size: 1.3rem; line-height: 1; color: var(--ink); padding-top: 0.15rem; }
@media (min-width: 60em) { .vs-lead li { padding-left: 1.5rem; font-size: 1.1rem; } }

.vs-section { margin-top: 2.75rem; }
.vs-section h2 { font-size: 1.55rem; line-height: 1.15; margin: 0 0 1rem; border: 0; }
.vs-section h3 { font-size: 1.2rem; line-height: 1.25; margin: 1.5rem 0 0.6rem; }
@media (min-width: 60em) { .vs-section h2 { font-size: 1.8rem; } }

/* Zitatmarker: klein, dunkelrot, ohne Unterstrich */
sup.cite { line-height: 0; font-size: 0.68em; vertical-align: super; margin-left: 0.1em; }
sup.cite a { color: var(--accent); text-decoration: none; font-weight: 600; padding: 0 0.1em; }
sup.cite a:hover { text-decoration: underline; text-decoration-thickness: 1px; }

/* Callout: Einzug + Haarlinie oben, kursive Serife – keine Fläche */
.vs-callout { margin: 2.25rem 0 2.25rem 1.5rem; padding-top: 1rem; border-top: 1px solid var(--ink); }
.vs-callout-title { font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem !important; }
.vs-callout p:not(.vs-callout-title) { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.15rem; line-height: 1.45; letter-spacing: 0; }
@media (min-width: 60em) { .vs-callout { margin-left: 2.5rem; } }

/* Abbildungen */
.vs-figure { margin: 2.5rem 0; }
.vs-figure-title { display: block; font-weight: 600; font-size: 1rem; line-height: 1.4; margin: 0 0 0.8rem; color: var(--ink); }
.vs-figure-caption { display: block; margin-top: 0.7rem; font-size: 0.875rem; line-height: 1.5; color: var(--muted); }
.vs-illu svg, .vs-figure-image img { display: block; width: 100%; height: auto; }
.vs-figure-svg .vs-illu { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 0.5rem 0; }
.vs-figure-chart .vs-chart-scroll, .vs-figure-chart { overflow-x: auto; -webkit-overflow-scrolling: touch; }
svg.vs-chart { display: block; width: 100%; min-width: 38rem; height: auto; overflow: visible; font-family: var(--sans); }
@media (min-width: 60em) { svg.vs-chart { min-width: 0; } }
svg.vs-chart .vs-chart-bar { fill: var(--ink); }
svg.vs-chart .vs-chart-bar.neg { fill: var(--muted); }
svg.vs-chart .vs-chart-axis { stroke: var(--ink); stroke-width: 1; }
svg.vs-chart .vs-chart-label { fill: var(--ink); font-size: 14px; font-weight: 600; transform: translateY(-9px); }
svg.vs-chart .vs-chart-value { fill: var(--muted); font-size: 12.5px; transform: translateY(8px); }

.vs-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-top: 1px solid var(--ink); }
.vs-table { width: 100%; min-width: 40rem; border-collapse: collapse; font-size: 0.9rem; line-height: 1.45; }
.vs-table th, .vs-table td { text-align: left; vertical-align: top; padding: 0.7rem 1rem 0.7rem 0; border-bottom: 1px solid var(--hair); }
.vs-table th { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.vs-table td:first-child { font-weight: 600; }

/* FAQ */
.vs-faq .vs-faq-item { border-top: 1px solid var(--hair); }
.vs-faq .vs-faq-item:last-of-type { border-bottom: 1px solid var(--hair); }
.vs-faq-item > summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: minmax(0, 1fr) 1.5rem; column-gap: 1rem; align-items: start; padding: 0.9rem 0; font-family: var(--serif); font-weight: 700; font-size: 1.05rem; line-height: 1.3; letter-spacing: 0; }
.vs-faq-item > summary::-webkit-details-marker { display: none; }
.vs-faq-item > summary::after { content: "+"; font-family: var(--sans); font-weight: 500; font-size: 1.5rem; line-height: 1; text-align: right; }
.vs-faq-item[open] > summary::after { content: "−"; }
.vs-faq-a { padding: 0 0 1.1rem; max-width: 34em; }
.vs-faq-a p { font-size: 1rem; }

/* Fazit */
.vs-fazit { border-top: 1px solid var(--ink); padding-top: 1rem; }
.vs-fazit h2 { font-size: 1.35rem; }
.vs-fazit p { font-size: 1.1rem; line-height: 1.55; }

.vs-disclaimer { margin-top: 2.5rem !important; font-size: 0.875rem; color: var(--muted); }
/* Statische Seiten (seite.template.html): Listen und Kontaktformular im gleichen Haarlinien-Stil */
.vs-section ul { margin: 0 0 1.25rem; padding-left: 1.2em; }
.vs-section ul li { margin: 0.35rem 0; }
.vs-form label { display: block; font-size: 0.9rem; font-weight: 600; }
.vs-form input, .vs-form select, .vs-form textarea { display: block; width: 100%; max-width: 36em; margin-top: 0.35rem; padding: 0.6rem 0.7rem; font: inherit; color: var(--ink); background: var(--paper); border: 1px solid var(--hair); border-radius: 0; }
.vs-form input:focus, .vs-form select:focus, .vs-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent); }
.vs-form button { font: inherit; font-weight: 700; color: #FFFFFF; background: var(--brand); border: 0; padding: 0.7rem 1.4rem; cursor: pointer; }
.vs-form small { color: var(--muted); margin-left: 0.6rem; }

/* Quellen: zweispaltige Kleinsatz-Liste */
.vs-references { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--ink); }
.vs-references h2 { font-size: 1.35rem; margin-bottom: 0.9rem; }
.vs-reflist { list-style: none; counter-reset: ref; font-size: 0.8rem; line-height: 1.5; color: var(--muted); }
.vs-reflist .vs-ref { counter-increment: ref; display: grid; grid-template-columns: 1.6rem minmax(0, 1fr); column-gap: 0.25rem; padding: 0.35rem 0; break-inside: avoid; }
.vs-reflist .vs-ref::before { content: counter(ref); color: var(--ink); font-variant-numeric: tabular-nums; }
.vs-reflist a { color: var(--accent); overflow-wrap: anywhere; }
.vs-reflist .vs-ref:target { color: var(--ink); }
.vs-reflist .vs-ref:target::before { color: var(--accent); font-weight: 600; }
@media (min-width: 40em) { .vs-reflist { columns: 2; column-gap: 2.5rem; } }

/* Weiterlesen */
.more { max-width: var(--measure); margin: 3.5rem auto 0; }
.more .sec-title { font-size: 1.35rem; margin-bottom: 0.5rem; }
.more .row { grid-template-columns: 1fr; }
.more .row h3 { font-size: 1.15rem; }
@media (min-width: 60em) { .more .row { grid-template-columns: 7rem minmax(0, 1fr); column-gap: 1.5rem; } }
/* Weiterlesen: der Eintrag des aktuellen Artikels (li.more-<topic>) wird von tools/assemble.py entfernt, keine CSS-Regel nötig */

.vs-article-body { overflow-wrap: break-word; }

/* Vergleichstest Runde 3: Fotos im Fließtext, Listen in Abschnitten */
.vs-photo{margin:1.6rem 0}
.vs-photo img{display:block;width:100%;height:auto;border-radius:6px}
.vs-photo-placeholder{padding:1.4rem 1rem;border:1px dashed #DADADA;border-radius:6px;background:#F5F5F5;color:#6B6B6B;font-size:.95rem;text-align:center}
.vs-list{margin:.6rem 0 1rem;padding-left:1.3rem}
.vs-list li{margin:.35rem 0}
.vs-list-num{padding-left:1.5rem}
.vs-list-num li::marker{font-weight:700;color:#3A7A0C}

/* ===================================================================================================
   Seitenweite Navigation (Betreiber 14.09.2026, aus test-w02 übernommen): Kopfleiste sticky mit Leseleiste,
   Menü-Toggle nur als Icon (kein Wort „Menü“) in neuer Gestaltung, Desktop-Kompaktmodus beim Scrollen
   (Logo kleiner, Navigationslinks weichen dem Toggle, Panel rechts). Mobil bleibt die Kopfleiste statisch.
   Logik: site-nav.js (setzt is-sticky / is-compact, ergänzt die Leseleiste).
   =================================================================================================== */
.site-head { position: sticky; top: 0; z-index: 30; }
.site-head .head-row { transition: padding 0.2s ease; }
.site-head .brand svg { transition: height 0.2s ease; }
/* Menü-Toggle: 40-px-Fläche, feine weiße Kontur mit sanfter Rundung, drei dünne Striche mit runden Enden, klappt weich zum X; Wort „Menü“ ausgeblendet */
.menu > summary { gap: 0; padding: 0; width: 2.5rem; height: 2.5rem; font-size: 0; line-height: 0; display: inline-flex; align-items: center; justify-content: center; border: 1.5px solid rgba(255, 255, 255, 0.72); border-radius: 6px; transition: background 0.15s ease, border-color 0.15s ease; }
.menu > summary:hover, .menu[open] > summary { background: rgba(255, 255, 255, 0.14); border-color: #FFFFFF; }
.menu-icon { width: 1.2rem; height: 0.8rem; }
.menu-icon::before, .menu-icon::after, .menu-icon span { height: 2px; border-radius: 2px; transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease, opacity 0.15s ease; }
.menu[open] .menu-icon::before { top: calc(50% - 1px); }
.menu[open] .menu-icon::after { bottom: calc(50% - 1px); }
/* Desktop: kompakt beim Scrollen */
@media (min-width: 60em) {
  .site-head.is-compact .head-row { padding-block: 0.45rem; }
  .site-head.is-compact .brand svg { height: 2.1rem; }
  .site-head.is-compact .nav-main { display: none; }
  .site-head.is-compact .menu { display: block; }
  .menu-panel { max-width: 24rem; left: auto; right: 0; border-left: 1px solid var(--hair); }
}

/* Einfache Seiten (Impressum, Werbehinweis, Richtlinien …): Absatz- und Zwischenüberschriften-Abstände in der Artikelspalte (14.09.) */
.article-col .vs-section p { margin: 0 0 1.1em; }
.article-col .vs-section p:last-child { margin-bottom: 0; }
.article-col .vs-section h3 { font-size: 1.2rem; line-height: 1.3; margin: 1.8em 0 0.6em; }
.article-col .vs-section h4 { font-size: 1.02rem; margin: 1.3em 0 0.4em; }
.article-col .vs-section ul { margin: 0 0 1.1em 1.25em; padding: 0; }
.article-col .vs-section li { margin-bottom: 0.35em; }
/* Aufmacherbild: Fokus oben, damit Personen nicht am Kopf beschnitten werden (14.09.) */
.lead-figure img { object-position: 50% 4%; }
