﻿/* =========================================================
   uap-info.de – Design System
   =========================================================

   LESEN DIESE DATEI SO:
   ---------------------------------------------------------
   GELTUNGSBEREICH erkennst du am @media-Rahmen:
   - Kein @media drumherum ......... gilt IMMER (Desktop + Mobile)
   - @media (max-width: 960px) ..... NUR Tablet/Handy (<= 960px)
   - @media (max-width: 720px) ..... NUR Handy (<= 720px)
   - @media (max-width: 640px) ..... NUR kleine Handys (<= 640px)
   - @media (min-width: 1420px) .... NUR große Monitore (>= 1420px)

   REGEL: Bei Konflikt gewinnt die UNTERE Regel. Darum stehen
   alle Mobile-Overrides bewusst am Dateiende (ab "MOBILE").
   ---------------------------------------------------------
   SCHNELLSPRUNG per Suche (Strg+F):
   - "=== RESPONSIVE"  -> Haupt-Media-Queries (Navigation u. a.)
   - "=== MOBILE"      -> Handy-Overrides Sichtungen/Fließtext
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES ======================================= */
/* Design „Tinte + Rot" (ehem. Theme C8r, Beschluss 25.8.2026):
   Fast monochrom, Akzent Aktenstempel-Rot, sparsam verwendet.
   Hinweis: --text-light / --text-muted-light / --border-dark
   sind historische Namen und zeigen seit dem Hell-Redesign
   auf DUNKLE Werte (alle Flächen sind hell). */
:root {
  --nav-bg: #ffffff;
  --nav-border: #e5e5e5;
  --hero-bg: #f2f2f2;
  --section-bg-1: #fafafa;
  --section-bg-2: #fafafa;
  --section-bg-dark: #fafafa;
  --accent: #a31621;
  --accent-glow: rgba(163, 22, 33, 0.14);
  --accent-2: #7d1019;
  --accent-muted: rgba(163, 22, 33, 0.08);
  --text-primary: #111111;
  --text-secondary: #444444;
  --text-light: #111111;
  --text-muted-light: #6b7280;
  --border: #e5e5e5;
  --border-dark: #c9ced6;
  --card-shadow: none;
  --card-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.08);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 6px;
  --radius-lg: 8px;
  --transition: 0.2s ease;
  --card-bg: #ffffff;
}

/* === RESET =============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; /* fixierte Nav (64px) + 20px Luft, damit Ankerziele nicht verdeckt werden */
  scrollbar-gutter: stable; /* Scrollbar-Breite immer reservieren: sonst zentriert sich die fixierte Nav über der volleren Viewport-Breite und das Logo steht ~8px neben dem Inhalt */ }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--section-bg-1);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-2); }

/* === TYPOGRAPHY ========================================== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; }
h1, h2, h3, h4 { letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT ============================================== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section--gray { background: var(--section-bg-2); }
.section--dark { background: var(--section-bg-dark); color: var(--text-light); }
.section--compact { padding: 60px 0; }

/* Bereichstrennung ohne Farbflächen: Haarlinie + roter Strich */
.section, .quotes-section { border-top: 1px solid var(--border); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 12px; position: relative; padding-top: 26px; }
.section-header h2::before {
  content: ''; display: block; width: 52px; height: 4px;
  background: var(--accent); margin: 0 auto 18px;
}
.section-header p { color: var(--text-secondary); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.section--dark .section-header p { color: var(--text-muted-light); }

/* === NAVIGATION ========================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  height: 64px;
  display: flex; align-items: center;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.nav-logo {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--accent); letter-spacing: -0.03em; text-decoration: none;
  flex-shrink: 0; padding-right: 16px;
  position: relative;
  padding-left: 0;
  margin-left: 0; /* JS alignNavLogo() sets this at runtime */
  display: flex; align-items: center;
}
.nav-logo span { color: var(--accent); }
.nav-logo::before {
  content: '◈';
  position: absolute;
  left: -1.2rem;
  top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 0.85rem; opacity: 0.8;
  font-style: normal; letter-spacing: 0;
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: #333333; text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  padding: 6px 11px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: #000000; background: rgba(0,0,0,0.05); }
.nav-links a.active { color: var(--accent); background: none; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* === HERO VIDEO BACKGROUND =============================== */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #07091a;
}
.hero-video-wrapper video {
  position: absolute;
  top: 60%; left: 50%;
  /* Position Hero-Video: top = vertikal (33% = Motiv sitzt auf einem Drittel der Hero-Höhe),
     erste translate-Zahl = horizontal (weniger negativ = weiter rechts).
     min-height ~138% nötig, damit unten kein dunkler Rand entsteht. */
  transform: translate(-45%, -50%);
  min-width: 125%; min-height: 138%;
  width: auto; height: auto;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.78;
}

/* === EMBEDDED VIDEO ====================================== */
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius-lg); margin-top: 16px; background: #000;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* YouTube iframe fallback */
.hero-video-wrapper iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%; min-height: 100%;
  pointer-events: none;
  opacity: 0.5;
  border: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Weiß-Verlauf: links Textlesbarkeit, rechts bleibt das Video sichtbar */
  background: linear-gradient(
    100deg,
    rgba(242, 242, 242, 0.96) 0%,
    rgba(242, 242, 242, 0.88) 38%,
    rgba(242, 242, 242, 0.45) 65%,
    rgba(242, 242, 242, 0.12) 100%
  );
}
/* Gimbal ist FLIR/Infrarot: invertiert (black-hot) wird der Himmel
   hell und das Objekt zur dunklen Silhouette — passt zur Monochrom-Ästhetik */
.hero-video-wrapper video {
  filter: grayscale(1) invert(1) brightness(1.06) contrast(0.96);
}

/* === HERO (Homepage) ===================================== */
.hero {
  min-height: 100vh;
  min-height: 100svh; /* mobil stabiler: kleine Viewport-Höhe ohne dynamische Browser-Leisten */
  background: var(--hero-bg);
  display: flex; align-items: center;
  padding-top: 80px; /* bewusst mehr als die 64px-Nav: schiebt den zentrierten Inhalt optisch nach unten, damit die Eyebrow nicht zu dicht unter der Navileiste sitzt */
  position: relative; overflow: hidden;
}
/* Force container to fill hero width so hero-content stays left-aligned */
.hero > .container { flex: 1; min-width: 0; }
/* Sternenfeld/Glow im Hero seit Hell-Redesign deaktiviert */
.hero::before, .hero::after { display: none; }
.hero-content { position: relative; z-index: 3; max-width: 540px; text-align: left; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }
.hero h1 { color: var(--text-primary); margin-bottom: 24px; font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 580px; margin-bottom: 36px; line-height: 1.75; }
.hero .btn-outline { color: var(--text-primary); border-color: #b5b5b5; background: rgba(255,255,255,0.5); }
.hero .btn-outline:hover { background: #ffffff; color: var(--text-primary); }
/* === PAGE HERO (sub-pages) ============================== */
.page-hero {
  background: var(--hero-bg);
  padding: 120px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before { display: none; }
.page-hero { border-bottom: 1px solid var(--border); }
.page-hero-inner { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); }
.page-hero h1 { color: var(--text-light); margin-bottom: 14px; }
.page-hero .lead { color: var(--text-muted-light); font-size: 1.1rem; max-width: 680px; line-height: 1.75; }

/* === BUTTONS ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all var(--transition);
  cursor: pointer; border: none; font-family: var(--font-body);
}
.btn-primary { background: #111111; color: #fff; }
.btn-primary:hover { background: #000000; color: #fff; }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border-dark); }
.btn-outline:hover { background: rgba(0,0,0,0.05); color: var(--text-primary); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* === CARDS =============================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.card-grid--4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card-grid--2 { grid-template-columns: repeat(auto-fill, minmax(480px, 1fr)); }

.card {
  background: var(--section-bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition); text-decoration: none;
  color: inherit; display: block; box-shadow: var(--card-shadow);
}
.card:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: #b5b5b5; color: inherit;
}
.section--gray .card { background: var(--section-bg-1); }

.card-avatar {
  width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(163,22,33,0.25); margin: 0 auto 18px; display: block;
}
.card-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-secondary); font-size: 0.94rem; line-height: 1.65; }
.card-arrow { display: inline-flex; align-items: center; gap: 4px; color: var(--accent); font-size: 0.84rem; font-weight: 600; margin-top: 16px; }

/* === NEWS CARDS ========================================== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.news-card {
  background: var(--section-bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); box-shadow: var(--card-shadow);
  display: flex; flex-direction: column;
}
.news-card:hover { box-shadow: var(--card-shadow-hover); }
.news-card-body { padding: 24px; flex: 1; }
.news-card-footer { padding: 14px 24px 22px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); margin-top: auto; }
.tag {
  display: inline-block; font-size: 0.71rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 12px;
}
/* Bewertungs-Zeile in Begegnungsberichten: Standard-Abstand der Pille
   entfernen, sonst fluchtet sie nicht mit dem Begleittext */
.case-body .tag { margin-bottom: 0; }
.tag--blue { background: var(--accent-muted); color: var(--accent); }
.tag--teal { background: rgba(17,17,17,0.06); color: var(--accent-2); }
.tag--red { background: var(--accent-muted); color: var(--accent); }
.tag--yellow { background: rgba(17,17,17,0.06); color: var(--text-secondary); }
.tag--gray { background: rgba(17,17,17,0.06); color: var(--text-secondary); }
.tag--green { background: var(--accent-muted); color: var(--accent); }
.sighting-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.news-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.45; }
.news-card p { font-size: 0.94rem; color: var(--text-secondary); }
.news-date { font-size: 0.78rem; color: var(--text-secondary); }

/* === PERSON CARDS ======================================== */
.person-card { text-align: center; }
.person-avatar {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--accent-muted); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.9rem; margin: 0 auto 16px;
  border: 2px solid rgba(163,22,33,0.2);
}
.person-avatar img {
  width: 74px; height: 74px; border-radius: 50%;
  object-fit: cover; display: block;
}
.person-card h3 { margin-bottom: 4px; font-size: 1rem; }
.person-role { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; display: block; }
.person-card p { font-size: 0.92rem; color: var(--text-secondary); }

/* === PERSON DETAIL CARDS ================================= */
.person-detail {
  background: var(--section-bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.person-detail:hover { box-shadow: var(--card-shadow-hover); border-color: rgba(163,22,33,0.2); }
.person-detail-header {
  display: flex; gap: 20px; align-items: flex-start; margin-bottom: 20px;
}
.person-detail-avatar {
  width: 126px; height: 126px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(163,22,33,0.25);
}
.person-detail-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.person-detail-meta { flex: 1; min-width: 0; }
.person-detail-meta h2 { font-size: 1.3rem; margin-bottom: 3px; }
.person-detail-body { border-top: 1px solid var(--border); padding-top: 18px; }
.person-detail-body p { font-size: 0.97rem; color: var(--text-secondary); line-height: 1.82; margin-bottom: 14px; }
.person-detail-body p:last-child { margin-bottom: 0; }
.person-detail-body a { color: var(--accent); text-decoration: none; }
.person-detail-body a:hover { text-decoration: underline; }
.person-photo-note {
  font-size: 0.75rem; color: var(--text-secondary);
  text-align: center; margin-top: 6px;
  font-style: italic;
}

/* === DISCLOSURE TIMELINE FILTER ========================== */
.disclosure-filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.disclosure-filter-btn {
  font-size: 0.82rem; font-weight: 600; padding: 7px 16px;
  border-radius: 100px; border: 1.5px solid var(--border);
  background: none; color: var(--text-secondary);
  cursor: pointer; transition: all var(--transition); font-family: var(--font-body);
}
.disclosure-filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.disclosure-filter-btn.active { background: rgba(163,22,33,0.1); border-color: var(--accent); color: var(--accent); }

/* === WITNESS CARD (Disclosure) =========================== */
.witness-card {
  background: var(--section-bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--card-shadow);
}
.witness-card-header {
  display: flex; gap: 20px; align-items: flex-start; margin-bottom: 20px;
}
.witness-card-avatar {
  width: 132px; height: 132px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(163,22,33,0.3);
}
.witness-card-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.witness-card-meta { flex: 1; }
.witness-card-meta h3 { font-size: 1.3rem; margin-bottom: 4px; }
.witness-tag {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 6px; padding: 3px 10px;
  border-radius: 20px; font-size: 0.74rem; font-weight: 600;
  border: 1px solid;
}
.witness-tag--eid { background: var(--accent-muted); color: var(--accent); border-color: rgba(163,22,33,0.25); }
.witness-tag--direkt { background: rgba(163,22,33,0.1); color: var(--accent); border-color: rgba(163,22,33,0.25); }
.witness-card-body { border-top: 1px solid var(--border); padding-top: 20px; }
.witness-card-body h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 10px; margin-top: 20px; }
.witness-card-body h4:first-child { margin-top: 0; }
.witness-card-body p { font-size: 0.97rem; color: var(--text-secondary); line-height: 1.82; margin-bottom: 12px; }
.witness-card-body ul { padding-left: 18px; color: var(--text-secondary); font-size: 0.97rem; line-height: 1.8; margin-bottom: 12px; }
.witness-card-body a { color: var(--accent); text-decoration: none; }

/* === INTRO PROSE ========================================= */
.intro-prose { max-width: 820px; }
.intro-prose h2 { margin-bottom: 28px; padding-top: 4px; }
.intro-prose p { font-size: 1.05rem; line-height: 1.85; color: var(--text-secondary); margin-bottom: 20px; }

/* === SHAPE PHOTO (Theorien) ============================== */
.shape-photo {
  width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius-sm); overflow: hidden;
  background: rgba(7,9,26,0.6); border: 1px dashed rgba(17,17,17,0.3);
}
.shape-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; color: rgba(255,255,255,0.55);
  font-size: 0.8rem; font-style: italic; text-align: center; padding: 12px;
}
.shape-photo-placeholder span { font-weight: 600; color: rgba(255,255,255,0.72); font-style: normal; }
.shape-photo-placeholder small { font-size: 0.7rem; font-family: monospace; color: rgba(255,255,255,0.6); font-style: normal; }

/* === SIGHTING CARDS ====================================== */
.sighting-card { display: flex; gap: 24px; padding: 28px; margin-bottom: 20px; }
.sighting-number {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
  color: rgba(163,22,33,0.2); min-width: 52px; line-height: 1;
  flex-shrink: 0;
}
.sighting-body { flex: 1; }
.sighting-body h3 { margin-bottom: 8px; font-size: 1.15rem; }
.sighting-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0; margin-bottom: 12px; }
.sighting-meta-item { font-size: 0.82rem; color: var(--text-secondary); display: flex; align-items: center; }
.sighting-meta-item + .sighting-meta-item::before { content: '·'; margin: 0 8px; color: var(--text-secondary); flex-shrink: 0; }
.sighting-meta-item strong { color: var(--text-primary); }
.sighting-body p { font-size: 0.97rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.75; }
.evidence-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

/* === DOCUMENT CARDS ====================================== */
.doc-card {
  background: var(--section-bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  border-left: 3px solid var(--accent);
}
.doc-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.doc-card p { font-size: 0.94rem; color: var(--text-secondary); margin-bottom: 12px; }
.doc-meta { font-size: 0.8rem; color: var(--text-secondary); }

/* === TIMELINE ============================================ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -38px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 2px solid white;
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-date { font-size: 0.78rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 5px; }
.timeline-item h3 { margin-bottom: 8px; font-size: 1.1rem; }
.timeline-item p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.75; }

/* === INTRO SECTION ======================================= */
.intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box {
  text-align: center; padding: 24px 16px; border-radius: var(--radius);
  background: var(--accent-muted); border: 1px solid rgba(163,22,33,0.15);
}
.stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); display: block; }
.stat-label { font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; line-height: 1.4; }

/* === QUOTE =============================================== */
.quote-block { background: var(--section-bg-1); padding: 88px 0; text-align: center; border-top: 1px solid var(--border); }
.quote-block blockquote {
  font-family: var(--font-heading); font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-weight: 400; color: var(--text-light); max-width: 820px;
  margin: 0 auto; line-height: 1.6; font-style: italic;
}
.quote-mark { font-size: 5rem; color: var(--accent); line-height: 0.6; display: block; margin-bottom: 24px; font-family: Georgia, serif; font-style: normal; }
.quote-attribution { margin-top: 28px; color: var(--text-muted-light); font-size: 0.88rem; }
.quote-attribution strong { color: var(--accent); font-style: normal; }

/* === QUOTES GRID ========================================= */
.quotes-section { background: var(--section-bg-1); padding: 104px 0; }
.quotes-section .section-header h2 { color: var(--text-light); }
.quotes-section .section-header p { color: var(--text-muted-light); }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.quote-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  display: flex; flex-direction: column;
  transition: border-color var(--transition), background var(--transition);
}
.quote-card:hover {
  background: #ffffff;
  border-color: #b5b5b5;
}
.quote-card-mark {
  font-size: 2.8rem; color: var(--text-primary); line-height: 0.8;
  font-family: Georgia, serif; margin-bottom: 14px; display: block;
}
.quote-card blockquote {
  font-size: 0.96rem; color: var(--text-primary);
  line-height: 1.75; font-style: italic; flex: 1;
  margin-bottom: 22px;
}
.quote-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex; align-items: center; gap: 12px;
}
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 2px solid rgba(163,22,33,0.3); object-fit: cover;
}
.quote-card-footer-text { display: flex; flex-direction: column; min-width: 0; }
.quote-card-footer strong {
  color: var(--text-primary); font-size: 0.9rem; display: block; margin-bottom: 2px;
}
.quote-card-footer span { color: var(--text-muted-light); font-size: 0.78rem; }

/* Intro prose full-width */
.intro-prose {
  max-width: 860px; margin: 0 auto;
}
.intro-prose p {
  font-size: 1.1rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 18px;
}
.intro-prose p:last-child { margin-bottom: 0; }
.intro-prose strong { color: var(--text-primary); font-weight: 600; }

@media (max-width: 640px) {
  .quotes-grid { grid-template-columns: 1fr; }
}

/* === INFO BOX ============================================ */
.info-box {
  border-left: 3px solid var(--accent); background: rgba(163,22,33,0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 24px 0;
}
.info-box p { font-size: 0.95rem; color: var(--text-primary); margin: 0; line-height: 1.7; }
.info-box p strong { color: var(--text-primary); }
.info-box--yellow { border-color: var(--accent); background: rgba(163,22,33,0.08); }
.info-box--yellow p { color: var(--text-primary); }
.info-box--yellow p strong { color: var(--text-primary); }
.info-box--red { border-color: var(--accent); background: rgba(163,22,33,0.08); }
.info-box--red p { color: var(--text-primary); }

/* === PROSE =============================================== */
.prose { max-width: 760px; }
.prose h2 { margin: 44px 0 16px; }
.prose h3 { margin: 32px 0 12px; }
.prose h4 { margin: 24px 0 8px; font-size: 1rem; }
.prose p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose li { color: var(--text-secondary); margin-bottom: 7px; line-height: 1.75; }
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose a { color: var(--accent); text-decoration: none; }
.prose a:hover { text-decoration: underline; text-underline-offset: 3px; }
.prose .source-ref { font-size: 0.8rem; color: var(--text-secondary); background: var(--section-bg-2); border: 1px solid var(--border); border-radius: 5px; padding: 2px 8px; vertical-align: middle; margin-left: 4px; }

/* === SOURCE LIST ========================================= */
.source-item {
  background: var(--section-bg-1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 12px;
  display: flex; align-items: flex-start; gap: 16px;
}
.source-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.source-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.source-item p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.source-item a { font-size: 0.82rem; color: var(--accent); }

/* === REVEAL ANIMATION ==================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === FOOTER ============================================== */
.footer { background: var(--nav-bg); color: #6b7280; padding: 52px 0 24px; border-top: 1px solid var(--nav-border); }
.footer-disclaimer { font-size: 0.8rem; line-height: 1.65; margin-bottom: 32px; padding: 14px 18px; background: #f5f5f5; border-radius: var(--radius); border: 1px solid var(--border); }
.footer-bottom { border-top: 1px solid var(--nav-border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: #444444; text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--accent); }

/* === AKTUELLES (News einspaltig; Sidebar-Chronologie entfernt, Chronologie lebt auf disclosure.html) === */
.aktuelles-news-col { min-width: 0; }
.sidebar-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.sidebar-header h3 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin: 0; }
.timeline-sort-btn {
  font-size: 0.75rem; font-weight: 600; padding: 5px 12px;
  border-radius: 20px; border: 1px solid var(--border);
  background: none; color: var(--text-secondary);
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.timeline-sort-btn:hover { border-color: var(--accent); color: var(--accent); }
/* News als Editorial-Feed (Zeitungs-Stil): keine Karten, Haarlinien, Serifen-Headlines */
.news-item {
  padding: 36px 0 40px;
  border-bottom: 1px solid var(--border);
}
.news-item:last-child { border-bottom: none; padding-bottom: 8px; }
.news-item-header { display: flex; gap: 16px; align-items: baseline; margin-bottom: 14px; flex-wrap: wrap; }
.news-item-date {
  order: -1;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
}
.news-item .tag {
  background: none; border: none; padding: 0; border-radius: 0;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.news-item h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem; font-weight: 400; line-height: 1.45;
  color: var(--text-primary); margin-bottom: 12px;
}
.news-item--featured { padding-top: 8px; }
.news-item--featured h3 { font-size: clamp(1.85rem, 3.2vw, 2.25rem); line-height: 1.3; }
.news-item > p:first-of-type { font-size: 1.02rem; color: var(--text-primary); line-height: 1.8; }
.news-item p { font-size: 0.94rem; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.75; }
.news-item p:last-child { margin-bottom: 0; }
.news-item p.news-item-source { font-size: 0.78rem; color: var(--text-muted); border-top: none; padding-top: 0; margin-top: 14px; }
.news-item-source strong { color: var(--accent); }

/* Test: kompakter News-Feed mit Teasern, zweispaltig (nur aktuelles-2spaltig.html) */
.news-feed--2col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; align-items: start; }
.news-feed--2col .sidebar-header,
.news-feed--2col .news-item--featured { grid-column: 1 / -1; }
.news-feed--2col .news-item:not(.news-item--featured) h3 { font-size: 1.18rem; }
@media (max-width: 900px) {
  .news-feed--2col { grid-template-columns: 1fr; column-gap: 0; }
}

/* News-Items als Akkordeon (details/summary, gleiches Muster wie Sichtungskarten) */
details.news-item { padding: 26px 0 30px; }
details.news-item summary { cursor: pointer; list-style: none; }
details.news-item summary::-webkit-details-marker { display: none; }
details.news-item summary:hover h3 { color: var(--accent); }
details.news-item summary h3 { transition: color var(--transition); }
.news-teaser {
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 0;
}
details.news-item[open] .news-teaser {
  display: block; -webkit-line-clamp: unset; line-clamp: none;
}
.news-toggle { display: inline-block; margin-top: 10px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--accent); }
.news-toggle .close-label { display: none; }
details.news-item[open] .news-toggle .open-label { display: none; }
details.news-item[open] .news-toggle .close-label { display: inline; }
.news-chevron { display: inline-block; transition: transform var(--transition); }
details.news-item[open] .news-chevron { transform: rotate(180deg); }
.news-body { padding-top: 16px; }

/* Test: Masonry-Feed mit Medien-Vorschau (nur aktuelles-media.html).
   HTML-Quelle ist rein chronologisch; main.js verteilt die Items auf Desktop (>900px)
   abwechselnd in zwei generierte Spalten (.news-masonry--split), Mobile bleibt einspaltig. */
.news-masonry { max-width: 900px; margin: 0 auto; }
.news-masonry.news-masonry--split { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; align-items: start; max-width: none; }
.news-masonry--split > .news-item--featured { grid-column: 1 / -1; }
.news-masonry-col { min-width: 0; }

/* Video-Thumbnail in der News-Vorschau (YouTube-Standbild, Klick oeffnet den Artikel) */
.news-thumb {
  display: block; position: relative; margin-top: 14px;
  border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border);
}
.news-thumb img {
  display: block; width: 100%; height: auto;
  filter: grayscale(40%);
  transition: filter var(--transition), transform 0.4s ease;
}
details.news-item summary:hover .news-thumb img { filter: grayscale(0); transform: scale(1.02); }
.news-thumb-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(163, 22, 33, 0.92); color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; padding-left: 3px;
}
details.news-item[open] .news-thumb { display: none; }

/* Headline-Varianten-Umschalter (nur Testseite aktuelles-media.html) */
.hv-switcher { display: flex; gap: 6px; align-items: center; font-size: 0.78rem; color: var(--text-muted); }
.hv-switcher button { background: none; border: 1px solid var(--border); border-radius: 999px; padding: 3px 11px; font-size: 0.72rem; font-weight: 600; cursor: pointer; color: var(--text-secondary); font-family: var(--font-body); transition: all var(--transition); }
.hv-switcher button:hover { border-color: var(--accent); color: var(--accent); }
.hv-switcher button.active { border-color: var(--accent); color: var(--accent); background: rgba(163,22,33,0.06); }

/* Variante A: Inter Bold — konsistent zum restlichen Seitenstil */
.hv-a .news-item h3,
.hv-a .news-masonry--split .news-item h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.28rem; letter-spacing: -0.01em; line-height: 1.35; }
.hv-a .news-item--featured h3,
.hv-a .news-masonry--split .news-item--featured h3 { font-size: clamp(1.6rem, 2.8vw, 1.9rem); line-height: 1.25; }

/* Variante B: Inter ExtraBold kompakt — kraftvoller News-Look, kürzere Zeilen */
.hv-b .news-item h3,
.hv-b .news-masonry--split .news-item h3 { font-family: var(--font-heading); font-weight: 800; font-size: 1.12rem; letter-spacing: -0.02em; line-height: 1.28; }
.hv-b .news-item--featured h3,
.hv-b .news-masonry--split .news-item--featured h3 { font-size: clamp(1.45rem, 2.6vw, 1.75rem); line-height: 1.2; }

/* Variante C: Georgia Light — behaelt den Editorial-Serifen-Charakter, aber luftiger und leichter lesbar */
.hv-c .news-item h3,
.hv-c .news-masonry--split .news-item h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: 1.5rem; line-height: 1.45; }
.hv-c .news-item--featured h3,
.hv-c .news-masonry--split .news-item--featured h3 { font-size: clamp(1.85rem, 3.2vw, 2.25rem); line-height: 1.3; }

/* === ORGANISATIONEN ====================================== */
.org-badge {
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(163,22,33,0.08); border: 1px solid rgba(163,22,33,0.25);
  border-radius: var(--radius-sm);
  color: var(--accent); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em;
  text-align: center; line-height: 1.1; padding: 4px;
}
.org-badge.org-badge--inactive { background: rgba(17,17,17,0.05); border-color: rgba(17,17,17,0.15); color: var(--text-secondary); }
.org-facts { font-size: 0.86rem; color: var(--text-secondary); border-top: 1px solid var(--border); padding-top: 10px; margin-top: 12px; line-height: 1.7; }
.org-facts strong { color: var(--text-primary); }

/* === PERSON FILTER BAR =================================== */
.person-filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px;
}
.person-filter-btn {
  font-size: 0.82rem; font-weight: 600; padding: 8px 18px;
  border-radius: 100px; border: 1.5px solid var(--border);
  background: var(--section-bg-1); color: var(--text-secondary);
  cursor: pointer; transition: all var(--transition); font-family: var(--font-body);
}
.person-filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.person-filter-btn.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.person-cat-section { transition: opacity 0.25s ease; }

/* === CONTACT CASE ACCORDION ============================== */
details.contact-case {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--section-bg-1);
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition);
}
details.contact-case[open] { box-shadow: var(--card-shadow-hover); border-color: rgba(163,22,33,0.25); }
details.contact-case summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  user-select: none;
}
details.contact-case summary::-webkit-details-marker { display: none; }
details.contact-case summary .case-toggle {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-muted); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; line-height: 1; margin-top: 1px;
  transition: background var(--transition);
}
details.contact-case[open] summary .case-toggle { background: var(--accent); color: #fff; }
.case-summary-meta { font-size: 0.78rem; color: var(--text-secondary); font-family: var(--font-body); font-weight: 400; display: block; margin-top: 3px; }
.case-body { padding: 0 24px 24px; border-top: 1px solid var(--border); }
.case-body p { font-size: 0.97rem; color: var(--text-secondary); line-height: 1.78; margin-bottom: 12px; margin-top: 16px; }
.case-body p:last-child { margin-bottom: 0; }

/* === PERSON COMPACT GRID ================================= */
.person-cat-header {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary);
  margin: 40px 0 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.person-cat-header:first-child { margin-top: 0; }
.person-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.person-compact-card {
  background: var(--section-bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 16px 18px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: all var(--transition);
  box-shadow: var(--card-shadow);
}
.person-compact-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
  border-color: rgba(163,22,33,0.25);
}
.person-compact-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin-bottom: 12px; overflow: hidden;
  border: 2px solid rgba(163,22,33,0.2); flex-shrink: 0;
}
.person-compact-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.person-compact-card h3 { font-size: 0.9rem; margin-bottom: 3px; line-height: 1.3; }
.person-compact-role {
  font-size: 0.72rem; color: var(--accent); font-weight: 600;
  display: block; margin-bottom: 9px; line-height: 1.4;
}
.person-compact-card p {
  font-size: 0.8rem; color: var(--text-secondary);
  line-height: 1.55; flex: 1; margin-bottom: 14px;
}
.btn-sm { font-size: 0.78rem !important; padding: 6px 14px !important; margin-top: auto; }

/* === RESPONSIVE ========================================== */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--nav-bg); border-bottom: 1px solid var(--nav-border);
    flex-direction: column; align-items: stretch; padding: 12px; gap: 2px;
  }
  .nav-links.open { display: flex; }
  /* Mobil: größere Schrift + großzügige Tap-Flächen.
     WICHTIG: display:block sorgt dafür, dass das Padding die Zeilen
     tatsächlich auseinanderschiebt (ohne block überlappen die
     Klickflächen unsichtbar die Nachbareinträge -> Fehltipps).
     Zeilenabstand HIER einstellen: erster Wert in padding. */
  .nav-links a { display: block; padding: 6px; font-size: 1.15rem; }
  .intro-layout { grid-template-columns: 1fr; gap: 40px; }
  .sighting-card { flex-direction: column; gap: 8px; }
  .sighting-number { font-size: 1.5rem; }
  .person-compact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .card-grid, .card-grid--4 { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .person-compact-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr; }
  /* Hero-Video Mobil: Desktop-Verschiebung zurücknehmen + weniger Zoom.
     HIER EINSTELLBAR:
     top        = Höhenposition des Videozentrums in % der Hero-Höhe (kleiner = höher)
     min-height = Größe/Zoom des Videos (100% = füllt Hero genau, mehr = stärkerer Beschnitt)
     Faustregel: min-height muss mind. 2 × top betragen, sonst entsteht unten ein Rand. */
  .hero-video-wrapper video { transform: translate(-45%, -50%); min-width: 100%; top: 23%; min-height: 190%; }
  /* Schmale Handy-Breite besser ausnutzen */
  .container { padding: 0 12px; }

  /* Sortier-Zeile: Label über den Buttons statt daneben */
  .sightings-sort-row { justify-content: flex-start !important; flex-direction: column !important; align-items: flex-start !important; gap: 6px !important; }

  /* --- Disclosure & Historisch: Timeline-Einzug schmaler --- */
  .timeline { padding-left: 20px; }
  .timeline-item::before { left: -26px; }

  /* --- Disclosure: Personenkarten als flache Listenzeilen --- */
  #whistleblower .card {
    display: grid; grid-template-columns: 56px 1fr; column-gap: 14px; align-items: start;
    padding: 16px 0; border: none; border-bottom: 1px solid var(--border);
    border-radius: 0; background: transparent; box-shadow: none;
  }
  #whistleblower .card-avatar { width: 56px; height: 56px; margin: 2px 0 0; grid-row: 1 / 4; }
  #whistleblower .card h3, #whistleblower .card p, #whistleblower .card-arrow { grid-column: 2; }
  #whistleblower .card h3 { margin-bottom: 5px; font-size: 1rem; }
  #whistleblower .card p { font-size: 0.88rem; margin-bottom: 0; }
  #whistleblower .card-arrow { margin-top: 8px; }
}

/* === SICHTUNGEN PAGE — foreground sections ============== */
/* Hero and criteria bar sit above the fixed side nav so it
   slides behind them when the user is at the top of the page */
.page-hero {
  position: relative;
  z-index: 201;
}
#sichtungen-criteria {
  position: relative;
  z-index: 201;
  background: var(--section-bg-1);
}

/* Bottom page sections must cover the fixed sidenav */
#site-links-section,
footer {
  position: relative;
  z-index: 201;
}

/* === SIGHTING SIDE NAVIGATION ============================ */
#sighting-sidenav,
#disclosure-sidenav, #historisch-sidenav, #aliens-sidenav, #theorien-sidenav, #und-jetzt-sidenav {
  display: none;
  position: fixed;
  top: 80px;
  /* sits just left of the centred container */
  left: max(8px, calc(50vw - 600px - 208px));
  width: 188px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  z-index: 200;
  background: var(--nav-bg);
  border: 1px solid var(--nav-border);
  border-radius: var(--radius);
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
}
#sighting-sidenav::-webkit-scrollbar,
#disclosure-sidenav::-webkit-scrollbar, #historisch-sidenav::-webkit-scrollbar, #aliens-sidenav::-webkit-scrollbar, #theorien-sidenav::-webkit-scrollbar, #und-jetzt-sidenav::-webkit-scrollbar { width: 3px; }
#sighting-sidenav::-webkit-scrollbar-thumb,
#disclosure-sidenav::-webkit-scrollbar-thumb, #historisch-sidenav::-webkit-scrollbar-thumb, #aliens-sidenav::-webkit-scrollbar-thumb, #theorien-sidenav::-webkit-scrollbar-thumb, #und-jetzt-sidenav::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 2px; }

@media (min-width: 1420px) {
  #sighting-sidenav,
  #disclosure-sidenav, #historisch-sidenav, #aliens-sidenav, #theorien-sidenav, #und-jetzt-sidenav { display: block; }
}

#sighting-sidenav a,
#disclosure-sidenav a, #historisch-sidenav a, #aliens-sidenav a, #theorien-sidenav a, #und-jetzt-sidenav a {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 5px 12px 5px 10px;
  font-size: 0.73rem;
  color: var(--text-muted-light);
  text-decoration: none;
  line-height: 1.35;
  border-left: 2px solid transparent;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
#sighting-sidenav a:hover,
#disclosure-sidenav a:hover, #historisch-sidenav a:hover, #aliens-sidenav a:hover, #theorien-sidenav a:hover, #und-jetzt-sidenav a:hover {
  color: var(--text-primary);
  background: rgba(0,0,0,0.04);
}
#sighting-sidenav a.snav-active,
#disclosure-sidenav a.snav-active, #historisch-sidenav a.snav-active, #aliens-sidenav a.snav-active, #theorien-sidenav a.snav-active, #und-jetzt-sidenav a.snav-active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--accent-muted);
}
#sighting-sidenav .snav-num,
#disclosure-sidenav .snav-num, #historisch-sidenav .snav-num, #aliens-sidenav .snav-num, #theorien-sidenav .snav-num, #und-jetzt-sidenav .snav-num {
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--accent);
  opacity: 0.55;
  flex-shrink: 0;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}
#sighting-sidenav a.snav-active .snav-num,
#disclosure-sidenav a.snav-active .snav-num, #historisch-sidenav a.snav-active .snav-num, #aliens-sidenav a.snav-active .snav-num, #theorien-sidenav a.snav-active .snav-num, #und-jetzt-sidenav a.snav-active .snav-num { opacity: 1; }
#sighting-sidenav .snav-label,
#disclosure-sidenav .snav-label, #historisch-sidenav .snav-label, #aliens-sidenav .snav-label, #theorien-sidenav .snav-label, #und-jetzt-sidenav .snav-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Quote card primary-source line (homepage quotes) */
.quote-source {
  margin-top: 10px;
  font-size: 0.74rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}
.quote-source a {
  color: var(--accent);
  text-decoration: none;
}
.quote-source a:hover {
  text-decoration: underline;
}

/* Disclosure foreground sections (sit above side nav) */
#disclosure-intro {
  position: relative;
  z-index: 201;
  background: var(--section-bg-1);
}

/* === EVIDENZ-BEWERTUNG ==================================== */
.evidenz-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(163,22,33,0.04);
  border: 1px solid rgba(163,22,33,0.15);
  border-radius: 6px;
}
.evidenz-label-row {
  display: flex;
  justify-content: space-between;
}
.evidenz-col-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.evidenz-value-row {
  display: flex;
  align-items: center;
}
.evidenz-score {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.evidenz-level {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 10px;
}
.evidenz-bar-wrap {
  flex: 1;
  min-width: 30px;
  margin-right: 50px;
  height: 5px;
  background: rgba(163,22,33,0.12);
  border-radius: 3px;
  overflow: hidden;
}
.evidenz-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.evidenz-status {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  top: -2px;
}
.evidenz-detail {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.evidenz-detail-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
  align-items: center;
}
.evidenz-detail-label {
  font-size: 0.71rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  width: 196px;
  overflow: hidden;
}
.evidenz-detail-bar-wrap {
  flex: 1;
  max-width: 72px;
  min-width: 28px;
  height: 4px;
  background: rgba(163,22,33,0.1);
  border-radius: 2px;
}
.evidenz-detail-bar {
  height: 100%;
  background: rgba(163,22,33,0.5);
  border-radius: 2px;
}
.evidenz-detail-pts {
  font-size: 0.71rem;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
  color: var(--text-secondary);
}

/* === SICHTUNGSKARTEN V2 — COLLAPSIBLE ==================== */

/* Basis — gilt für alle Designs */
details.sighting-card {
  display: block;
}
details.sighting-card summary {
  list-style: none;
  cursor: pointer;
}
details.sighting-card summary::-webkit-details-marker { display: none; }
details.sighting-card summary::marker { display: none; }

.sc-teaser {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 10px 0 14px 0;
}
.sc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}
.sc-chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(163,22,33,0.1);
  color: var(--accent);
  white-space: nowrap;
}
.sc-status--ungeklaert { color: #f97316; }
.sc-status--teilweise { color: #eab308; }
.sc-status--erklaert { color: #22c55e; }

.sc-body {
  padding: 0 28px 28px 28px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
details.sighting-card[open] .sc-expand-hint,
details.sighting-card[open] .sc-expand-cta,
details.sighting-card[open] .sc-expand-btn,
details.sighting-card[open] .sc-expand-row {
  display: none;
}

/* ---- DESIGN A — Streamlined/Clean ---- */
details.sighting-card.sc-design-a > summary {
  display: block;
  padding: 24px 28px 20px 28px;
}
.sc-design-a .sc-summary-top {
  display: flex;
  gap: 20px;
  align-items: baseline;
}
.sc-design-a .sc-summary-full {
  /* full card width — no left indent */
}
.sc-design-a .sc-num-badge {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
}
.sc-design-a .sc-main { flex: 1; min-width: 0; }
.sc-design-a .sc-title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.sc-design-a .sc-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.sc-design-a .sc-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.sc-design-a .sc-meta-row {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.sc-design-a .sc-expand-cta {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
  user-select: none;
}
.sc-design-a .sc-chevron {
  display: inline-block;
  transition: transform 0.2s;
}
details.sighting-card.sc-design-a[open] .sc-chevron {
  transform: rotate(180deg);
}

/* ---- DESIGN B — Score-Forward ---- */
details.sighting-card.sc-design-b > summary {
  display: flex;
  gap: 0;
  padding: 0;
  align-items: stretch;
}
.sc-design-b .sc-score-aside {
  background: rgba(163,22,33,0.06);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  min-width: 88px;
  flex-shrink: 0;
  text-align: center;
  gap: 4px;
}
.sc-design-b .sc-score-big {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.sc-design-b .sc-score-max {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -4px;
}
.sc-design-b .sc-score-word {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}
.sc-design-b .sc-status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 6px;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(163,22,33,0.08);
  color: var(--accent-2);
  white-space: nowrap;
}
.sc-design-b .sc-main {
  flex: 1;
  padding: 20px 24px;
  min-width: 0;
}
.sc-design-b .sc-num-inline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.sc-design-b .sc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}
.sc-design-b .sc-meta-row {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.sc-design-b .sc-expand-btn {
  margin-top: 12px;
  padding: 7px 18px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: transparent;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

/* ---- DESIGN C — Evidence-Prominent ---- */
details.sighting-card.sc-design-c > summary {
  padding: 22px 28px 18px 28px;
  display: block;
}
.sc-design-c .sc-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.sc-design-c .sc-num-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border-radius: 4px;
  padding: 2px 7px;
  flex-shrink: 0;
}
.sc-design-c .sc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}
.sc-design-c .sc-date-compact {
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.sc-design-c .sc-meta-row {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.sc-design-c .sc-evidence-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: rgba(163,22,33,0.04);
  border: 1px solid rgba(163,22,33,0.15);
  border-radius: 6px;
  margin-bottom: 12px;
}
.sc-design-c .sc-strip-score {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}
.sc-design-c .sc-strip-score span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}
.sc-design-c .sc-strip-status {
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.sc-design-c .sc-expand-row {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
  user-select: none;
}

@media (max-width: 640px) {
  .sc-design-b > summary { flex-direction: column; }
  .sc-design-b .sc-score-aside { flex-direction: row; border-right: none; border-bottom: 1px solid var(--border); min-width: auto; padding: 14px 20px; justify-content: flex-start; gap: 12px; }
  .sc-design-a > summary { gap: 12px; }
  .sc-design-a .sc-num-badge { min-width: 36px; font-size: 1.4rem; }
}

/* === SICHTUNGSKARTE — INTERNE STRUKTUR =================== */
.sc-ev-section {
  padding: 20px 0 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.sc-ev-rows-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 4px;
}
.sc-ev-rows {
  flex: 1;
  min-width: 0;
}
.sc-ev-note {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid rgba(163,22,33,0.18);
  border-radius: 6px;
  background: rgba(163,22,33,0.03);
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: -10px;
}
.sc-ev-note p { margin: 0; font-size: 0.9rem; line-height: 1.45; color: var(--text-muted); }
.sc-ev-note strong { color: var(--text-secondary); font-weight: 600; }
.sc-ev-total {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.sc-ev-total-label {
  width: 196px;
  flex-shrink: 0;
  font-size: 0.71rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
}
.sc-ev-total-spacer {
  flex: 1;
  max-width: 72px;
  min-width: 28px;
}
.sc-ev-total-sum {
  width: 36px;
  text-align: right;
  flex-shrink: 0;
  font-size: 0.71rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}
.sc-ev-justification {
  margin-top: 17px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-left: 2px solid rgba(163,22,33,0.2);
  padding-left: 12px;
}
.sc-section-heading {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-secondary);
  margin: 32px 0 12px 0;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--border);
}
.sc-quote {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(163,22,33,0.03);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-radius: 0 4px 4px 0;
}
.sc-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  margin-top: 8px;
  color: var(--text-muted);
  font-weight: 600;
}
.sc-significance {
  margin-top: 36px;
  padding-top: 4px;
}

/* === SICHTUNGEN: MOBIL-INDEX (Übersicht + Direktauswahl) == */
/* Sichtbar unter 1420px — darüber übernimmt die fixe Sidenav */
.sc-index {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--section-bg-1); margin-bottom: 22px;
}
.sc-index > summary {
  list-style: none; cursor: pointer; padding: 13px 16px;
  font-weight: 600; font-size: 0.92rem; color: var(--text-primary);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.sc-index > summary::-webkit-details-marker { display: none; }
.sc-index-chevron { color: var(--accent); font-size: 0.8rem; transition: transform 0.2s; }
.sc-index[open] .sc-index-chevron { transform: rotate(180deg); }
.sc-index-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px;
  padding: 2px 16px 14px;
}
.sc-index-grid a {
  display: flex; align-items: baseline; gap: 8px;
  padding: 8px 0; font-size: 0.85rem; line-height: 1.35;
  color: var(--text-secondary); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.sc-index-grid a:hover { color: var(--accent); }
.sc-index-num { font-weight: 700; color: var(--accent); font-size: 0.74rem; min-width: 17px; flex-shrink: 0; }
.sc-index-year { margin-left: auto; padding-left: 8px; color: var(--text-muted); font-size: 0.74rem; white-space: nowrap; }
.sc-index-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.sc-index-text small { font-size: 0.72rem; color: var(--text-muted); line-height: 1.3; }
/* Wrapper für den Kapitel-Index auf den anderen Seiten (steht dort außerhalb von Sections) */
.sc-index-outer { padding-top: 26px; }
@media (max-width: 640px) { .sc-index-grid { grid-template-columns: 1fr; } }
@media (min-width: 1420px) { .sc-index, .sc-index-outer { display: none; } }

/* --- Schlusszitat (Und jetzt?) --- */
.closing-quote-section {
  padding: 40px 0 100px;
  text-align: center;
}
.closing-quote {
  margin: 0 auto;
  max-width: 780px;
}
.closing-quote-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5.5rem;
  line-height: 0.45;
  color: var(--accent);
  margin-bottom: 34px;
}
.closing-quote p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.35;
  color: var(--text-primary);
  margin: 0 0 26px;
}
.closing-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Quellenbereich --- */
.sc-sources {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(163,22,33,0.15);
}
.sc-sources-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.sc-sources-col {
  flex: 1;
  min-width: 220px;
}
.sc-sources-cat {
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin: 0 0 8px 0;
}
.sc-sources-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sc-sources-list li {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.sc-sources-list a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.sc-sources-list a:hover {
  text-decoration: underline;
}

/* === THEORIEN: VISUELLE ELEMENTE ==================== */
.section-figure { margin: 30px 0 34px; }
.section-figure img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); display: block; }
.section-figure figcaption { font-size: 0.8rem; color: var(--text-secondary); margin-top: 10px; text-align: center; line-height: 1.5; }

.pull-quote { margin: 32px 0; padding: 2px 0 2px 26px; border-left: 3px solid var(--accent); }
.pull-quote blockquote { font-family: var(--font-heading); font-size: 1.22rem; font-style: italic; line-height: 1.55; color: var(--text-primary); margin: 0; }
.pull-quote cite { display: block; margin-top: 10px; font-size: 0.84rem; font-style: normal; color: var(--text-secondary); line-height: 1.5; }

.nuke-timeline { position: relative; display: flex; justify-content: space-between; margin: 42px 0 14px; padding-top: 30px; }
.nuke-timeline::before { content: ''; position: absolute; top: 6px; left: 0; right: 0; height: 2px; background: var(--border); }
.nuke-tl-item { position: relative; flex: 1; text-align: center; padding: 0 4px; }
.nuke-tl-item::before {
  content: ''; position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.nuke-tl-year { display: block; font-family: var(--font-heading); font-weight: 700; color: var(--accent); font-size: 0.95rem; }
.nuke-tl-label { display: block; font-size: 0.76rem; color: var(--text-secondary); margin-top: 3px; line-height: 1.35; }
@media (max-width: 640px) {
  .nuke-timeline { flex-wrap: wrap; gap: 22px 0; }
  .nuke-timeline::before { display: none; }
  .nuke-tl-item { flex: 0 0 33.333%; }
  .nuke-tl-item::before { top: -16px; width: 8px; height: 8px; }
}

.drive-diagram { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 4px 0 10px; }
.drive-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 16px 14px; text-align: center; }
.drive-panel svg { width: 100%; height: auto; display: block; }
.drive-panel h5 { font-family: var(--font-heading); font-size: 0.98rem; margin: 12px 0 4px; }
.drive-panel p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }
@media (max-width: 640px) { .drive-diagram { grid-template-columns: 1fr; } }

/* === MOBILE (≤640px): SICHTUNGSKARTEN & EVIDENZ ==========
   Bewusst ans Dateiende gesetzt: Bei gleicher Spezifität gewinnt
   die spätere Regel — diese Overrides wirken so zuverlässig. */
@media (max-width: 640px) {
  /* Karten-Chrome aus, Inhalt volle Breite */
  details.sighting-card.card {
    padding: 0 0 26px; margin-bottom: 34px !important;
    border: none; border-bottom: 1px solid var(--border-dark); border-radius: 0;
    background: transparent; box-shadow: none;
  }
  details.sighting-card.sc-design-a > summary { padding: 16px 0 12px; }
  .sc-body { padding: 0 0 18px; border-top: none; }
  /* Titel direkt neben der Fall-Nummer, Datum/Meta bündig darunter */
  .sc-design-a .sc-summary-top { gap: 10px; }
  .sc-design-a .sc-num-badge { min-width: 0; font-size: 1.4rem; }
  /* Fließtext größer + luftiger; Teaser im zugeklappten Zustand gleiche Größe
     (erhöhte Spezifität, damit die Basisregel nicht sticht) */
  .sc-body p { font-size: 1.05rem; line-height: 1.8; }
  .sc-design-a .sc-teaser { font-size: 1.05rem; line-height: 1.75; }
  /* Evidenz-Aufschlüsselung stapeln statt nebeneinander quetschen */
  .sc-ev-rows-wrap { flex-direction: column; align-items: stretch; gap: 12px; }
  .sc-ev-note { margin-top: 0; }
  .sc-ev-total-label { width: auto; }
  /* Hinweiskasten und A/B/C-Begründung: dieselbe kleinere Größe */
  .sc-ev-note, .sc-ev-note p { font-size: 0.8rem; }
  .sc-ev-section .sc-ev-justification { font-size: 0.8rem; }
  /* Evidenz-Box (Karten-Summary), alles linksbündig, Zeilen:
     "Evidenz" / Score + Stufe + Balken / "Status" / Statuswert */
  .evidenz-block { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .evidenz-label-row, .evidenz-value-row { display: contents; }
  .evidenz-col-label { flex-basis: 100%; }
  .evidenz-score, .evidenz-level { order: 1; }
  .evidenz-bar-wrap { order: 1; flex: 1 1 60px; margin-right: 0; }
  /* Sichtbare Gruppentrennung: "Status" mit Abstand zur Score-Zeile */
  .evidenz-label-row .evidenz-col-label:last-child { order: 2; margin-top: 14px; }
  .evidenz-status { order: 3; flex-basis: 100%; }

  /* --- Site-weit: Fließtext mobil größer (wie Sichtungen) --- */
  .prose p, .prose li { font-size: 1.05rem; }
  .prose li { line-height: 1.8; }
  /* Sichtungskarten ausnehmen (:not), sonst sticht diese Regel deren
     eigene Größen (Fließtext 1,05rem, Hinweiskasten 0,8rem) */
  .card:not(.sighting-card) p, .news-card p, .person-card p, .doc-card p { font-size: 1rem; line-height: 1.7; }
  .timeline-item p { font-size: 1.05rem; line-height: 1.8; }
}

/* === DISCLOSURE: 3-Stufen-Schaubild ============================ */
.disc-steps { display: flex; align-items: stretch; gap: 12px; margin: 26px 0 30px; }
.disc-step { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 18px 16px 14px; }
.disc-step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.disc-step h3 { font-size: 1.02rem; margin: 0 0 8px; }
.disc-step p { font-size: 0.9rem; color: var(--text-secondary); margin: 0 0 8px; }
.disc-step p.disc-step-status { margin: 0; color: var(--text-primary); }
.disc-step-arrow { align-self: center; color: var(--accent); font-size: 1.5rem; font-weight: 700; }
@media (max-width: 720px) {
  .disc-steps { flex-direction: column; }
  .disc-step-arrow { align-self: center; transform: rotate(90deg); }
}
