/* ══════════════════════════════════════════════
   shared.css , sigrid-holzner.com
   Single source of truth: Tokens, Layout, Nav, Footer,
   Artikel-Komponenten, FAQ, Cookie-Banner, Buttons.
   Jede Seite lädt: <link rel="stylesheet" href="/shared.css">
   ══════════════════════════════════════════════ */

/* ──────────────────────────────────────────────
   1) TOKENS
   ────────────────────────────────────────────── */
:root {
  /* Farben */
  --petrol: #1a6b5a;
  --petrol-rgb: 26, 107, 90;
  --petrol-light: #6EC0AE;
  --petrol-light-rgb: 110, 192, 174;
  --mint: #e8f4f0;
  --terrakotta: #c4956a;

  --ink: #1a1a1a;
  --ink-light: #4a4a4a;
  --ink-muted: #7a7a7a;

  --cream: #f7f5f0;
  --cream-dark: #efede8;
  --surface: #ffffff;

  --dark: #141E1C;
  --dark-surface: #1c2624;
  --dark-border: rgba(110, 192, 174, 0.15);
  --dark-text: #e8e5e0;
  --dark-text-muted: #b0ada8;

  /* Typografie */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;

  /* Layout */
  --max-w: 1200px;
  --article-w: 720px;
  --section-py: clamp(4rem, 8vw, 7rem);
  --nav-h: 80px;

  /* Radien */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-pill: 100px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ──────────────────────────────────────────────
   2) RESET
   ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ──────────────────────────────────────────────
   3) LAYOUT: Container
   ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ──────────────────────────────────────────────
   4) NAVIGATION
   Startseite: position:fixed + top:2px (scroll-progress)
   Unterseiten: position:sticky + top:0
   Seite steuert via body.page-home vs body.page-sub
   ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
body.page-home .nav { position: fixed; top: 2px; }

.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); display: inline-flex; align-items: center; }
.nav-logo img { height: 72px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 450;
  color: var(--ink-light); transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--petrol); font-weight: 500; }

.nav-cta {
  font-size: 0.85rem !important; font-weight: 500 !important;
  color: var(--surface) !important; background: var(--ink);
  padding: 0.5rem 1.25rem; border-radius: var(--r-sm);
  transition: background 0.25s, transform 0.25s;
}
.nav-cta:hover { background: var(--petrol); transform: translateY(-1px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

.nav-mobile {
  display: none; position: fixed; top: 66px; left: 0; right: 0;
  background: rgba(250, 248, 245, 0.97); backdrop-filter: blur(16px);
  padding: 1.5rem; border-bottom: 1px solid rgba(26,26,26,0.06);
  z-index: 999;
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile a { font-size: 1rem; font-weight: 450; color: var(--ink-light); padding: 0.5rem 0; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ──────────────────────────────────────────────
   5) FOOTER
   Kein Cookie-Button mehr. Cookie-Settings leben
   auf /datenschutz.html#cookie-einstellungen.
   ────────────────────────────────────────────── */
.footer { border-top: 1px solid rgba(26,26,26,0.06); padding: 2.5rem 0; }

.footer-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--ink-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.78rem; color: var(--petrol);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--petrol-light); }

.footer-agency { font-size: 0.78rem; color: var(--ink-muted); }
.footer-agency a { color: var(--petrol); text-decoration: underline; text-underline-offset: 2px; }

.footer-mx {
  width: 100%; text-align: center; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid rgba(var(--petrol-rgb), 0.1);
  font-family: var(--font-hand); font-size: 1.4rem; color: var(--petrol);
}

/* ──────────────────────────────────────────────
   6) BUTTONS (universal)
   ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.65rem 1.5rem; border-radius: var(--r-sm);
  font-size: 0.9rem; font-weight: 500;
  transition: background 0.25s, transform 0.25s, color 0.25s;
  text-decoration: none !important;
}
.btn-primary { background: var(--ink); color: var(--surface) !important; }
.btn-primary:hover { background: var(--petrol); transform: translateY(-1px); }

.btn-secondary {
  background: var(--mint); color: var(--petrol) !important;
  border: 1px solid rgba(var(--petrol-rgb), 0.2);
}
.btn-secondary:hover { background: var(--petrol); color: var(--surface) !important; transform: translateY(-1px); }

/* ──────────────────────────────────────────────
   7) LANDING-LAYOUT
   Für Landing-artige Seiten (z.B. methodik.html).
   Container-Breite, zentrierte Section-Titel,
   Split-Hero mit Text + Bild.
   Unterscheidet sich bewusst vom Artikel-Layout
   (dort 720px Lesefluss für Insights-Seiten).
   ────────────────────────────────────────────── */

/* 7.1 Sections */
.section { padding: var(--section-py) 0; }

.section-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--petrol);
  font-weight: 600; margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 0.5rem; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--petrol); }

.section-sub {
  font-size: 1rem; color: var(--ink-light);
  max-width: 600px; margin-bottom: 2.5rem; line-height: 1.65;
}

/* 7.2 Section-Zentriert-Variante (für .section.centered oder .section-head) */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.section-head .section-label { display: inline-block; margin-bottom: 0.75rem; }
.section-head .section-sub { margin-left: auto; margin-right: auto; margin-bottom: 0; }

/* 7.2b Section-Modifier
   .section.tight = ohne oberes Padding (wenn vorige Section schon Abstand liefert)
   .section.compact = kleineres vertikales Padding */
.section.tight { padding-top: 0; }
.section.compact { padding: clamp(2rem, 4vw, 3rem) 0; }

/* 7.2c Prose-zentriert innerhalb einer Landing-Section
   für TL;DR, Highlight-Boxen, Infoboxen, FAQ-Wrapper.
   !important ist hier bewusst: die Klasse MUSS die
   horizontale Zentrierung erzwingen, auch wenn das Element
   (article-tldr, article-highlight, infobox) sein eigenes
   margin-Shorthand setzt, das left/right auf 0 zurücksetzt. */
.prose-center {
  max-width: 720px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.prose-center.spaced-top { margin-top: 2.5rem; }
.prose-center.small-top { margin-top: 1.5rem; }
.prose-center.centered-text { text-align: center; }
.prose-center > p {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--ink-light); margin-bottom: 0;
}

/* 7.3 Landing-Hero (Split: Text links, Bild rechts) */
.landing-hero {
  padding: calc(var(--nav-h) + clamp(2rem, 5vw, 3.5rem)) 0 clamp(3rem, 5vw, 4.5rem);
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .landing-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.landing-hero-breadcrumb {
  font-size: 0.78rem; color: var(--ink-muted); margin-bottom: 1.25rem;
}
.landing-hero-breadcrumb a { color: var(--petrol); }
.landing-hero-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 2px; }

.landing-hero-label {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--petrol); background: var(--mint);
  padding: 0.3rem 0.85rem; border-radius: var(--r-pill);
  border: 1px solid rgba(var(--petrol-rgb), 0.15);
  margin-bottom: 1rem;
}

.landing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 1rem;
}
.landing-hero h1 em { font-style: italic; color: var(--petrol); }

.landing-hero-sub {
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  color: var(--ink-light); line-height: 1.65;
  max-width: 500px; margin-bottom: 1.5rem;
}

.landing-hero-meta {
  font-size: 0.85rem; color: var(--ink-muted);
  margin-bottom: 1.75rem;
}
.landing-hero-meta a { color: var(--petrol); }

.landing-hero-cta-row {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}

.landing-hero-image {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid rgba(26, 26, 26, 0.06);
}
.landing-hero-image img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-md);
}

/* ──────────────────────────────────────────────
   8) ARTIKEL-KOMPONENTEN
   Zentral für alle insights/* Artikel (720px Lesefluss)
   ────────────────────────────────────────────── */

/* 7.1 Header-Block eines Artikels */
.article-header {
  padding: calc(var(--nav-h) + clamp(2rem, 5vw, 3rem)) 0 clamp(1.5rem, 3vw, 2rem);
  max-width: var(--article-w); margin: 0 auto;
}
.article-breadcrumb { font-size: 0.78rem; color: var(--ink-muted); margin-bottom: 1.5rem; }
.article-breadcrumb a { color: var(--petrol); }
.article-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 2px; }

.article-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--petrol); background: var(--mint);
  padding: 0.3rem 0.75rem; border-radius: var(--r-pill);
  border: 1px solid rgba(var(--petrol-rgb), 0.15);
  margin-bottom: 1rem;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2; color: var(--ink);
  margin-bottom: 0.75rem;
}
.article-header h1 em { font-style: italic; color: var(--petrol); }
.article-meta { font-size: 0.85rem; color: var(--ink-muted); }
.article-meta a { color: var(--petrol); }

/* 7.2 Body */
.article-body {
  max-width: var(--article-w); margin: 0 auto;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.article-body p {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--ink-light); margin-bottom: 1.5rem;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.article-body h3 {
  font-family: var(--font-body);
  font-size: 1.1rem; font-weight: 600;
  color: var(--ink); margin: 2rem 0 0.75rem;
}
.article-body strong { color: var(--ink); }
.article-body a { color: var(--petrol); text-decoration: underline; text-underline-offset: 2px; }
.article-body ul, .article-body ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.5rem;
  color: var(--ink-light);
}
.article-body li { margin-bottom: 0.4rem; line-height: 1.7; }

/* 7.3 Highlight-Box */
.article-highlight {
  background: var(--mint);
  border-left: 3px solid var(--petrol);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.article-highlight p {
  color: var(--petrol);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.article-highlight p:last-child { margin-bottom: 0; }
.article-highlight .takeaway-credit {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.article-highlight .takeaway-credit a { color: var(--petrol); }

/* 7.4 TL;DR-Box */
.article-tldr {
  background: var(--surface);
  border: 1px solid rgba(var(--petrol-rgb), 0.2);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0 2.5rem;
}
.article-tldr-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--petrol); margin-bottom: 0.75rem;
}
.article-tldr p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.article-tldr p:last-child { margin-bottom: 0; }

/* 7.5 Infobox */
.infobox {
  background: var(--surface);
  border: 1px solid rgba(var(--petrol-rgb), 0.2);
  border-radius: var(--r-lg);
  padding: 1.5rem; margin: 2rem 0;
  position: relative;
}
.infobox::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--petrol), var(--petrol-light));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.infobox-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--petrol); margin-bottom: 0.75rem;
}
.infobox h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); margin: 0 0 0.5rem; }
.infobox p { font-size: 0.92rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 0.75rem; }
.infobox p:last-child { margin-bottom: 0; }

/* 7.6 Figure/Cycle */
.cycle-figure {
  margin: 2.5rem auto;
  text-align: center;
  max-width: 560px;
}
.cycle-figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.cycle-figure-caption {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* 7.7 Author-Box */
.article-author {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--surface);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: var(--r-lg); padding: 1.5rem;
  margin-top: 2.5rem;
}
.article-author img {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.article-author-name { font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
.article-author-bio { font-size: 0.85rem; color: var(--ink-light); line-height: 1.6; }
.article-author-bio a { color: var(--petrol); }

/* 7.8 Artikel-CTA */
.article-cta {
  background: var(--surface);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: var(--r-lg); padding: 2rem;
  margin-top: 2rem; text-align: center;
}
.article-cta p { color: var(--ink-light); font-size: 0.95rem; margin-bottom: 1.25rem; }
.article-cta-buttons {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.article-cta-buttons a {
  display: inline-block;
  padding: 0.65rem 1.5rem; border-radius: var(--r-sm);
  font-size: 0.9rem; font-weight: 500;
  transition: background 0.25s, transform 0.25s, color 0.25s;
  text-decoration: none !important;
}
.article-cta-primary { background: var(--ink); color: var(--surface); }
.article-cta-primary:hover { background: var(--petrol); color: var(--surface); transform: translateY(-1px); }
.article-cta-secondary {
  background: var(--mint); color: var(--petrol);
  border: 1px solid rgba(var(--petrol-rgb), 0.2);
}
.article-cta-secondary:hover { background: var(--petrol); color: var(--surface); transform: translateY(-1px); }

/* 7.9 Back-Link */
.article-back { max-width: var(--article-w); margin: 0 auto; padding-bottom: 3rem; }
.article-back a {
  font-size: 0.85rem; color: var(--petrol);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.article-back a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ──────────────────────────────────────────────
   8) FAQ: zwei Varianten
   8.1 .faq-item : Listen-Stil (Startseite, Insights-Übersicht)
   8.2 details.faq-detail : aufklappbar (Artikel)
   ────────────────────────────────────────────── */

/* 8.1 Listen-Stil */
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
}
.faq-item h3 {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.5rem;
}
.faq-item p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* 8.2 Aufklappbar */
.article-faq { margin-top: 2.5rem; }
.article-faq h2 { margin-bottom: 1.25rem; }
details.faq-detail { border-bottom: 1px solid rgba(26,26,26,0.08); }
details.faq-detail summary {
  font-size: 1rem; font-weight: 500; color: var(--ink);
  padding: 1.25rem 0; cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
details.faq-detail summary::-webkit-details-marker { display: none; }
details.faq-detail summary::after {
  content: '+'; font-size: 1.25rem; font-weight: 300;
  color: var(--petrol); transition: transform 0.3s;
  flex-shrink: 0; margin-left: 1rem;
}
details[open].faq-detail summary::after { content: '\2212'; }
.faq-detail-a {
  font-size: 0.92rem; color: var(--ink-light);
  line-height: 1.7; padding: 0 0 1.25rem 0;
}

/* ──────────────────────────────────────────────
   9) COOKIE-BANNER
   HTML wird von /shared.js injiziert.
   Der Trigger-Button lebt auf /datenschutz.html,
   nicht im Footer.
   ────────────────────────────────────────────── */
.cb-overlay {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.cb-overlay.active { opacity: 1; visibility: visible; }
.cb-overlay.active .cb-box { transform: translateY(0); }

.cb-box {
  background: var(--surface);
  border-radius: 16px 16px 12px 12px;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.15);
  padding: 1.75rem 2rem 1.5rem;
  max-width: 540px; width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out-expo);
}
.cb-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }
.cb-text { font-size: 0.85rem; color: var(--ink-light); line-height: 1.6; margin: 0.75rem 0 1.25rem; }

.cb-categories { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.cb-cat { display: flex; flex-direction: column; gap: 0.15rem; }
.cb-label {
  display: flex; align-items: center; gap: 0.6rem; cursor: pointer;
  font-size: 0.9rem; font-weight: 500; color: var(--ink);
}
.cb-label input { display: none; }
.cb-check {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1.5px solid var(--ink-muted);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.cb-label input:checked ~ .cb-check { background: var(--petrol); border-color: var(--petrol); }
.cb-label input:checked ~ .cb-check::after {
  content: ''; width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}
.cb-check-locked { background: var(--cream-dark); border-color: var(--cream-dark); }
.cb-label input:checked:disabled ~ .cb-check-locked {
  background: var(--petrol); border-color: var(--petrol); opacity: 0.5;
}
.cb-cat-desc { font-size: 0.75rem; color: var(--ink-muted); padding-left: calc(18px + 0.6rem); }

.cb-actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.cb-btn {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  border: none; border-radius: var(--r-md); cursor: pointer;
  padding: 0.7rem 1.4rem; transition: background 0.2s, transform 0.2s;
}
.cb-btn:hover { transform: translateY(-1px); }
.cb-btn-primary { background: var(--petrol); color: var(--surface); }
.cb-btn-primary:hover { background: var(--petrol-light); }
.cb-btn-secondary { background: var(--cream); color: var(--ink); }
.cb-btn-secondary:hover { background: var(--cream-dark); }
.cb-btn-link {
  background: none; color: var(--ink-muted);
  padding: 0.7rem 0.5rem;
  text-decoration: underline; text-underline-offset: 2px;
}
.cb-btn-link:hover { color: var(--ink); }

.cb-footer {
  display: flex; gap: 1.25rem; margin-top: 1rem;
  padding-top: 0.75rem; border-top: 1px solid var(--cream-dark);
}
.cb-footer a { font-size: 0.75rem; color: var(--ink-muted); text-decoration: underline; text-underline-offset: 2px; }
.cb-footer a:hover { color: var(--petrol); }

@media (max-width: 480px) {
  .cb-box { padding: 1.25rem 1.25rem 1rem; }
  .cb-actions { flex-direction: column; }
  .cb-btn { width: 100%; text-align: center; }
}

.cookie-settings-trigger {
  cursor: pointer; background: none; border: none;
  font-family: var(--font-body); font-size: inherit; color: inherit;
  text-decoration: underline; text-underline-offset: 2px; padding: 0;
}
.cookie-settings-trigger:hover { color: var(--petrol); }

/* ──────────────────────────────────────────────
   10) LEGAL-SEITEN (Datenschutz, Impressum)
   Schmaler Text-Fluss, wie Artikel-Layout aber kompakter
   ────────────────────────────────────────────── */
.legal-page {
  max-width: var(--article-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + clamp(1.5rem, 4vw, 2.5rem)) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 6vw, 5rem);
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.legal-page h1 em { font-style: italic; color: var(--petrol); }
.legal-meta {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}
.legal-page h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.5rem 0 0.5rem;
}
.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-light);
  margin-bottom: 0.75rem;
}
.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page a {
  color: var(--petrol);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page strong { color: var(--ink); }

/* Datenschutz-Seite: dedizierter Cookie-Einstellungen-Block */
.cookie-settings-block {
  background: var(--surface);
  border: 1px solid rgba(var(--petrol-rgb), 0.2);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.cookie-settings-block h2 { margin-top: 0 !important; }
.cookie-settings-block p { margin-bottom: 1rem; }
.cookie-settings-block .btn { margin-top: 0.5rem; }

/* ──────────────────────────────────────────────
   10) METHODIK-KOMPONENTEN
   Sitewide verfügbar, aktuell nur auf /methodik.html
   genutzt. Bei Bedarf wiederverwendbar.
   ────────────────────────────────────────────── */

/* 10.1 Dual-Split (1:2)
   Links Entity schmal, rechts Holistic doppelt breit
   (rechts sitzen Engine-Grid + längerer Erklärtext). */
.dual-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
@media (max-width: 768px) { .dual-split { grid-template-columns: 1fr; } }

.split-card {
  background: var(--surface);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative; overflow: hidden;
}
.split-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.split-card.entity::before { background: var(--petrol); }
.split-card.holistic::before { background: var(--petrol-light); }

.split-card-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.split-card.entity .split-card-label { color: var(--petrol); }
.split-card.holistic .split-card-label { color: var(--petrol-light); }

.split-card h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--ink); margin: 0 0 0.5rem;
  line-height: 1.3;
}
.split-card p {
  font-size: 0.9rem; color: var(--ink-light);
  line-height: 1.65; margin-bottom: 1rem;
}
.split-card p:last-child { margin-bottom: 0; }
.split-card-question {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: var(--ink);
  margin-bottom: 0.75rem;
}

/* 10.2 Vergleichs-Block (Brand vs CJ etc.) */
.ww-split {
  background: var(--cream); border-radius: var(--r-md);
  padding: 1rem; margin-top: 1rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.ww-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.78rem; }
.ww-tag {
  font-weight: 600; font-size: 0.65rem; letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem; border-radius: 4px;
  flex-shrink: 0; width: 80px; text-align: center;
}
.ww-tag.off { background: rgba(26,26,26,0.08); color: var(--ink-muted); }
.ww-tag.on { background: rgba(var(--petrol-rgb), 0.12); color: var(--petrol); }
.ww-desc { color: var(--ink-light); line-height: 1.4; }
.ww-arrow { text-align: center; font-size: 0.7rem; color: var(--ink-muted); padding: 0.1rem 0; }
.ww-label {
  font-size: 0.75rem; color: var(--ink-muted);
  font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 0.25rem;
}

/* 10.3 Engine-Grid */
.engine-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.4rem; margin-top: 1rem;
}
.engine-chip {
  background: var(--cream); border-radius: var(--r-sm);
  padding: 0.45rem 0.6rem;
  font-size: 0.72rem; color: var(--ink-light); line-height: 1.3;
}
.engine-chip strong {
  display: block; font-size: 0.68rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.1rem;
}

.engine-note {
  font-size: 0.85rem; color: var(--ink-light);
  margin-top: 1rem; line-height: 1.6;
}

/* 10.4 Prozess-Schritte (5er-Reihe) */
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem; margin: 2rem 0;
}
@media (max-width: 640px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps .step-card:last-child { grid-column: 1 / -1; }
}
.step-card {
  background: var(--surface);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: var(--r-md);
  padding: 1rem; text-align: center;
}
.step-card.active {
  border-color: rgba(var(--petrol-rgb), 0.3);
  background: var(--mint);
}
.step-num {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--ink-muted);
  margin-bottom: 0.35rem;
}
.step-card.active .step-num { color: var(--petrol); }
.step-title { font-size: 0.78rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.step-sub { font-size: 0.65rem; color: var(--ink-muted); margin-top: 0.2rem; }

/* 10.5 Approach-Grid (3er-Prinzipien) */
.approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin: 2rem 0;
}
@media (max-width: 640px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-card {
  background: var(--surface);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.approach-card-num {
  font-size: 0.6rem; font-weight: 700;
  color: var(--petrol); letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.approach-card h3 {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--ink); margin: 0 0 0.5rem;
}
.approach-card p {
  font-size: 0.88rem; color: var(--ink-light);
  line-height: 1.6; margin-bottom: 0;
}

/* 10.6 Result-Box (dark) */
.result-box {
  background: var(--dark); color: var(--dark-text);
  border-radius: var(--r-lg); padding: 2rem;
  margin: 2.5rem 0; text-align: center;
}
.result-box h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--surface); margin: 0 0 0.75rem;
}
.result-box p {
  font-size: 0.92rem; color: var(--dark-text);
  max-width: 540px; margin: 0 auto; line-height: 1.65;
}
.result-items {
  display: flex; justify-content: center;
  gap: 2rem; margin-top: 1.25rem; flex-wrap: wrap;
}
.result-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--petrol-light);
}
.result-item svg { width: 14px; height: 14px; flex-shrink: 0; }
