/* ============================================================
   DPM VIDS – Public Stylesheet
   Design: warmes Dunkel, Sunburst-Orange, mechanische Typo
   ============================================================ */

:root {
  /* Farben */
  --ink:        #16130f;   /* Hintergrund, warm near-black */
  --ink-2:      #1d1811;   /* Sektionen alt */
  --card:       #221c14;
  --card-2:     #2a2318;
  --line:       #392f22;
  --cream:      #f5efe3;   /* Haupttext */
  --cream-dim:  #d8cebb;   /* gedämpfter Text */
  --muted:      #a89b85;
  --orange:     #f5920b;
  --amber:      #fdb827;
  --orange-ink: #1a1204;

  /* Ampelfarben für Wartezeiten - bewusst fest (nicht saisonal überschrieben),
     damit Grün/Gelb/Rot bei jedem Style (auch Winter/Halloween) gleich bleiben. */
  --wz-green:      #1f9d55;
  --wz-green-ink:  #eafff1;
  --wz-yellow:     #fdb827;
  --wz-yellow-ink: #1a1204;
  --wz-red:        #dc2626;
  --wz-red-ink:    #fff0ee;
  --wz-status:     #8a8074;
  --wz-status-ink: #201c16;

  /* Typo */
  --display: "Space Grotesk", system-ui, sans-serif;
  --body:    "IBM Plex Sans", system-ui, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Maße */
  --wrap: 1200px;
  --wrap-narrow: 760px;
  --radius: 16px;
  --radius-sm: 10px;
}

/* ---------- Saisonale Themes (serverseitig bestimmt, siehe lib/theme.js) ---------- */
body.theme-winter {
  --ink:        #0b1420;
  --ink-2:      #101c2c;
  --card:       #142236;
  --card-2:     #1a2b42;
  --line:       #24374f;
  --cream:      #eef6ff;
  --cream-dim:  #c9dcef;
  --muted:      #7f9ab3;
  --orange:     #4fa8e0;
  --amber:      #8fd6ff;
  --orange-ink: #04141f;
}
body.theme-halloween {
  --ink:        #120a1a;
  --ink-2:      #180f22;
  --card:       #221530;
  --card-2:     #2b1a3d;
  --line:       #3d2452;
  --cream:      #f3e9ff;
  --cream-dim:  #d9c4f0;
  --muted:      #a389c2;
  --orange:     #ff7518;
  --amber:      #b357f5;
  --orange-ink: #1f0a00;
}
/* Helles, freundliches Theme (Vorbild: disneyparksblog.com) - eisblauer statt
   reinweißer Seiten-Hintergrund, damit weiße Karten sich davon abheben; zwei
   Blautöne (Mittelblau #187bb7 + dunkleres Indigo #233ba8, wie im Verlaufs-Header)
   statt vorher Blau+Gold, damit Buttons/Tags konsequent zum blauen Look passen
   statt orange herauszustechen. --ink-2/--card-2/--line sind bewusst sichtbar
   blau getönt statt fast-weiß, sonst heben sich Karten/Wechsel-Abschnitte nie vom
   Seiten-Hintergrund ab. Größerer --radius für die großzügig abgerundeten
   Foto-Karten wie auf disneyparksblog.com. */
body.theme-bright {
  --ink:        #eef9ff;
  --ink-2:      #dcf0fb;
  --card:       #ffffff;
  --card-2:     #d3e9f7;
  --line:       #b3d9f0;
  --cream:      #16305e;
  --cream-dim:  #48597c;
  --muted:      #7189ad;
  --orange:     #187bb7;
  --amber:      #233ba8;
  --orange-ink: #ffffff;
  --radius:     20px;
  --radius-sm:  14px;
  /* Rundlichere, freundlichere Schrift statt der mechanischen Standard-Typo -
     als Anlehnung an Disneys Markenschrift (die selbst ist Disney-lizenziert). */
  --display: "Baloo 2", system-ui, sans-serif;
  --body:    "Nunito", system-ui, sans-serif;
}
/* Blauer Verlaufs-Header (Vorbild: disneyparksblog.com) - feste Farben statt
   Theme-Variablen, da der Verlauf unabhängig vom eisblauen Seiten-Hintergrund
   funktionieren muss. Ab der mobilen Menü-Klappe (≤1150px, siehe media query
   weiter unten) gilt das nur noch für Logo/Hamburger direkt im Header - das
   aufgeklappte Menü selbst liegt auf normalem Theme-Hintergrund und behält
   deshalb seine normale (dunkle) Textfarbe. */
body.theme-bright .site-header {
  background: linear-gradient(90deg, #233ba8, #0285ce);
  border-bottom: 0;
  backdrop-filter: none;
}
body.theme-bright .nav-toggle span { background: #fff; }
@media (min-width: 1151px) {
  /* Direkt-Kind-Selektor (>) statt Nachfahren-Selektor - sonst würde das auch die
     Park-Links im "Disney Parks"-Dropdown-Panel treffen, die auf einer weißen
     Karte liegen (nicht auf dem blauen Header) und dann weiß-auf-weiß wären. */
  body.theme-bright .site-nav > a { color: rgba(255, 255, 255, .88); }
  body.theme-bright .site-nav > a:hover { color: #fff; }
  body.theme-bright .site-nav > a.is-active { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }
  body.theme-bright .nav-dropdown-toggle { color: rgba(255, 255, 255, .88); }
  body.theme-bright .nav-dropdown:hover .nav-dropdown-toggle,
  body.theme-bright .nav-dropdown-toggle:focus-visible { color: #fff; }
  body.theme-bright .nav-lang { color: #fff !important; border-color: rgba(255, 255, 255, .5); }
  body.theme-bright .nav-lang:hover { border-color: #fff; color: #fff !important; }
  body.theme-bright .nav-cta { background: #ffffff; color: #16305e !important; }
  body.theme-bright .nav-cta:hover { background: #eef9ff; }
  body.theme-bright .search-form input[type="search"] {
    background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .4); color: #fff;
  }
  body.theme-bright .search-form input[type="search"]::placeholder { color: rgba(255, 255, 255, .75); }
  body.theme-bright .search-form button { color: #fff; }
  body.theme-bright .search-form button:hover { color: rgba(255, 255, 255, .7); }
}
/* Alert-Textfarben sind sonst helle Pastelltöne für dunklen Hintergrund gedacht -
   auf Weiß brauchen sie dunklere, lesbare Varianten. */
body.theme-bright .alert-error { color: #7a2415; }
body.theme-bright .alert-success { color: #1d6b3d; }
/* Kategorie-Tags: im Standard-Theme reicht ein dezenter, fast durchsichtiger
   Farbton (dunkle Karten als Untergrund) - im Hell-Theme ist das zu blass und
   geht je nach Vorschaubild/Hintergrund unter. Deshalb hier ein kräftiger,
   deckender Chip (weißer Text auf Blau) statt des blassen Tons. */
body.theme-bright .tag {
  color: #fff; background: var(--orange); border-color: var(--orange);
}
/* Kartenschatten sind fürs dunkle Theme kalibriert - im Hellen dezenter halten */
body.theme-bright .post-card:hover,
body.theme-bright .video-card:hover { box-shadow: 0 8px 24px color-mix(in oklab, var(--line) 60%, transparent); }
/* --card ist im Hell-Theme identisch mit --ink (beides Weiß) - ohne eigenen
   Schatten verschwimmen Karten sonst mit der Seitenfläche, nur der (jetzt
   sichtbarere) Rand reicht dafür allein oft nicht. */
body.theme-bright .post-card,
body.theme-bright .video-card,
body.theme-bright .lexikon-group,
body.theme-bright .park-hours-pill,
body.theme-bright .lexikon-infobox,
body.theme-bright details.prose-spoiler {
  box-shadow: 0 4px 16px color-mix(in oklab, var(--line) 70%, transparent);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
/* Platz für die vertikale Scrollbar immer fest reservieren (auch auf kurzen
   Seiten ohne eigentlichen Scrollbalken) - sonst verschiebt sich die Mitte
   von zentrierten Elementen um die Scrollbar-Breite (~15px), je nachdem ob
   die aktuelle Seite gerade lang genug zum Scrollen ist oder nicht. Auf
   Systemen mit schmalen Overlay-Scrollbalken (v. a. macOS) ändert das nichts,
   da dort ohnehin kein Layout-Platz reserviert wird. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.wrap-narrow { max-width: var(--wrap-narrow); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--orange); color: var(--orange-ink); padding: .6rem 1rem; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.admin-notice-bar {
  position: relative; z-index: 30; text-align: center; font-size: .85rem; font-weight: 600;
  padding: .6rem 1rem; background: var(--amber); color: var(--orange-ink);
}
.admin-notice-bar a { color: var(--orange-ink); text-decoration: underline; margin-left: .5rem; white-space: nowrap; }
.draft-notice-bar { background: #e5654b; color: #fff; }

/* Schneller Sprung ins Backend für eingeloggte Admins/Redakteure, direkt auf der Beitragsseite */
.frontend-edit-fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 70;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--orange); color: var(--orange-ink);
  padding: .75rem 1.3rem; border-radius: 999px; font-weight: 700; font-size: .9rem;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,.55);
  transition: transform .15s, background .15s;
}
.frontend-edit-fab:hover { transform: translateY(-2px); background: var(--amber); }
@media (max-width: 640px) {
  .frontend-edit-fab { right: 1rem; bottom: 1rem; padding: .65rem 1.1rem; font-size: .85rem; }
}

:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.section-title, .page-title, .article-title {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--cream);
}
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.page-title    { font-size: clamp(2rem, 5vw, 3.4rem); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--ink) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: inline-flex; align-items: center; }
.brand-wordmark { height: clamp(30px, 4.5vw, 42px); width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); flex-wrap: nowrap; }
.site-nav a { font-weight: 500; color: var(--cream-dim); font-size: .98rem; transition: color .15s; white-space: nowrap; }
.site-nav a:hover { color: var(--cream); }
.site-nav a.is-active { color: var(--orange); }
/* "Disney Parks"-Hover-Menü: reines CSS (kein JS), öffnet per :hover (Maus) oder
   :focus-within (Tastatur/Screenreader, tabbt in einen der Links hinein). Auf
   Mobilgeräten (siehe Media-Query weiter unten) klappt es stattdessen immer
   offen als normale Unterliste, da es dort kein Hover gibt. */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-weight: 500; color: var(--cream-dim); font-size: .98rem; cursor: pointer;
  display: inline-flex; align-items: center; gap: .3rem; transition: color .15s; white-space: nowrap;
}
.nav-dropdown-toggle::after { content: "▾"; font-size: .65rem; }
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle:focus-visible { color: var(--cream); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  min-width: 220px; padding: .6rem; margin-top: .6rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, .5);
  display: grid; gap: .1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: .55rem .8rem; border-radius: 8px;
  font-weight: 500; font-size: .92rem; color: var(--cream-dim);
}
.nav-dropdown-menu a:hover { background: var(--card-2); color: var(--cream); }
.nav-cta {
  background: var(--orange); color: var(--orange-ink) !important;
  padding: .5rem 1rem; border-radius: 999px; font-weight: 600 !important;
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--amber); }
.nav-lang {
  font-family: var(--mono); font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  border: 1px solid var(--line); border-radius: 999px; padding: .3rem .65rem; color: var(--cream-dim) !important;
  white-space: nowrap; flex-shrink: 0;
}
.nav-lang:hover { border-color: var(--orange); color: var(--orange) !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--cream); margin: 5px 0; border-radius: 2px; transition: .25s; }

.search-form { display: flex; align-items: center; gap: .35rem; }
.search-form input[type="search"] {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: .4rem .9rem; color: var(--cream); font-size: .85rem; width: 150px;
  transition: border-color .2s;
}
.search-form input[type="search"]:focus { border-color: var(--orange); outline: none; }
.search-form input[type="search"]::placeholder { color: var(--muted); }
.search-form button {
  background: none; border: 0; cursor: pointer; color: var(--cream-dim);
  font-size: 1rem; padding: .3rem; line-height: 1;
}
.search-form button:hover { color: var(--orange); }
.search-form-page { display: flex; gap: .6rem; margin-top: 1.4rem; max-width: 420px; }
.search-form-page input[type="search"] { flex: 1; width: auto; }
.search-form-page button {
  background: var(--orange); color: var(--orange-ink); border-radius: 999px;
  padding: .5rem 1.1rem; font-weight: 600; font-size: .9rem;
}
.search-form-page button:hover { background: var(--amber); color: var(--orange-ink); }

.search-summary { color: var(--muted); margin-bottom: 1.6rem; }
.search-group-title {
  font-family: var(--display); font-size: 1.3rem; margin: 2.2rem 0 1.1rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.search-group-title:first-of-type { padding-top: 0; border-top: 0; }
.search-page-list { display: flex; flex-direction: column; gap: .6rem; }
.search-page-list a { color: var(--cream); font-weight: 500; }
.search-page-list a:hover { color: var(--orange); }

/* ---------- Lexikon ---------- */
.lexikon-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; align-items: start; }
.lexikon-group {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.lexikon-group-title {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-size: 1.2rem; margin-bottom: .9rem;
  padding-bottom: .8rem; border-bottom: 1px solid var(--line);
}
.lexikon-group-icon { width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0; object-fit: cover; }
.lexikon-list { list-style: none; display: grid; gap: .3rem; }
.lexikon-list li { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.lexikon-list li:last-child { border-bottom: 0; }
.lexikon-list-link { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--cream); }
.lexikon-list-link:hover { color: var(--orange); }
.lexikon-list-teaser { color: var(--muted); font-size: .85rem; }

@media (max-width: 640px) {
  .lexikon-groups { grid-template-columns: 1fr; }
}

/* Lexikon-Steckbrief: kleine Infobox oben rechts auf der Beitragsseite, Fließtext läuft daneben */
.lexikon-infobox {
  float: right; width: 260px; margin: 0 0 1.5rem 1.75rem;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: 0 16px 36px -18px rgba(0, 0, 0, .6);
}
.lexikon-infobox-title {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: var(--display); font-weight: 700; font-size: .92rem; letter-spacing: .01em;
  padding: .8rem 1rem; color: var(--orange-ink);
  background: linear-gradient(135deg, var(--orange), var(--amber));
}
.lexikon-infobox-title-icon {
  width: 15px; height: 15px; flex-shrink: 0; background-color: var(--orange-ink);
  -webkit-mask: url('/img/mickey-icon.svg') no-repeat center / contain;
  mask: url('/img/mickey-icon.svg') no-repeat center / contain;
}
.lexikon-infobox-rows { padding: .3rem 1.15rem .4rem; }
.lexikon-infobox-row { padding: .65rem 0; border-bottom: 1px solid var(--line); font-size: .85rem; }
.lexikon-infobox-row:last-child { border-bottom: 0; }
.lexikon-infobox-row dt {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .05em;
  font-size: .66rem; color: var(--muted);
}
.lexikon-infobox-row dt::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0;
}
.lexikon-infobox-row dd { margin-top: .25rem; color: var(--cream); font-weight: 600; font-size: .93rem; }
@media (max-width: 640px) {
  .lexikon-infobox { float: none; width: 100%; margin: 0 0 1.5rem; }
}

/* "+ N weitere anzeigen" - native <details>/<summary>, kein JS nötig. Verhindert, dass eine
   lange Quellen-/Faktencheck-Liste die Seite sprengt. */
.sources-more { margin-top: .2rem; }
.sources-more summary {
  cursor: pointer; list-style: none; user-select: none;
  color: var(--orange); font-size: .82rem; font-weight: 600; padding: .3rem 0;
}
.sources-more summary::-webkit-details-marker { display: none; }
.sources-more summary:hover { color: var(--amber); }
.sources-more[open] summary { display: none; }

/* Automatisch verlinkte Lexikon-Begriffe im Fließtext + Hover-Vorschau */
.prose .lexikon-link, .article-lead .lexikon-link {
  color: var(--orange); text-decoration: underline; text-decoration-style: dotted;
  text-underline-offset: 3px; text-decoration-thickness: 1.5px;
}
.lexikon-tooltip {
  position: absolute; z-index: 200; max-width: 280px; padding: .8rem 1rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  color: var(--cream-dim); font-size: .85rem; line-height: 1.55;
  box-shadow: 0 14px 34px -12px rgba(0,0,0,.55);
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity .15s, transform .15s;
  pointer-events: none;
}
.lexikon-tooltip.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(4rem, 12vh, 8rem) 0 clamp(3rem, 8vh, 5rem); }
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 1.02; letter-spacing: -.03em; margin: 1rem 0 1.3rem;
}
.hero-accent { color: var(--orange); }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--cream-dim); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

/* Sunburst-Signature */
.hero-sunburst {
  position: absolute; z-index: 0; top: 50%; right: -8%;
  width: min(760px, 90vw); aspect-ratio: 1; transform: translateY(-50%);
  pointer-events: none;
}
.sunburst-rays {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    color-mix(in oklab, var(--orange) 22%, transparent) 0deg 9deg,
    transparent 9deg 18deg
  );
  -webkit-mask: radial-gradient(circle, #000 30%, transparent 72%);
          mask: radial-gradient(circle, #000 30%, transparent 72%);
  opacity: .5;
  animation: spin 12s linear infinite;
}
.hero-sunburst::after {
  content: ""; position: absolute; inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--amber) 40%, transparent), transparent 70%);
  filter: blur(20px);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Feuerwerk – Alternative zum Radar, ebenfalls im Hero-Bereich.
   Feste, theme-unabhängige Farben, damit es wie ein echtes buntes Feuerwerk wirkt. */
.hero-fireworks { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.firework { position: absolute; width: 2px; height: 2px; --fw-color: #fdb827; }
.firework::before {
  content: ""; position: absolute; top: -20px; left: -20px; width: 40px; height: 40px;
  border-radius: 50%; filter: blur(6px); opacity: 0;
  background: radial-gradient(circle, color-mix(in oklab, var(--fw-color) 75%, transparent), transparent 70%);
  animation-name: fireworkFlash;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-duration: var(--dur, 3.5s);
  animation-delay: var(--delay, 0s);
}
.firework .spark {
  position: absolute; top: 0; left: 0; width: 3px; height: 3px; border-radius: 50%;
  background: var(--fw-color);
  box-shadow: 0 0 6px 1px var(--fw-color), 0 0 12px 2px color-mix(in oklab, var(--fw-color) 55%, transparent);
  opacity: 0;
  animation-name: fireworkSpark;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-duration: var(--dur, 3.5s);
  animation-delay: var(--delay, 0s);
}
.firework-gold   { --fw-color: #fdb827; }
.firework-red    { --fw-color: #ff4d5e; }
.firework-teal   { --fw-color: #2fd4c9; }
.firework-pink   { --fw-color: #ff6fd8; }
.firework-purple { --fw-color: #a06bff; }
.firework-blue   { --fw-color: #4fa8e0; }
@keyframes fireworkFlash {
  0%   { opacity: 0; transform: scale(.2); }
  4%   { opacity: .9; transform: scale(1); }
  22%  { opacity: 0; transform: scale(1.7); }
  100% { opacity: 0; }
}
@keyframes fireworkSpark {
  0%   { opacity: 0; transform: rotate(var(--angle)) translateX(0) scale(1); }
  6%   { opacity: 1; }
  60%  { opacity: .85; transform: rotate(var(--angle)) translateX(var(--dist, 70px)) scale(.55); }
  100% { opacity: 0; transform: rotate(var(--angle)) translateX(calc(var(--dist, 70px) * 1.15)) scale(.25); }
}

/* News-Slider – klickbares Hero-Karussell aus den neuesten News-Beiträgen */
.hero-news { position: relative; overflow: hidden; padding: 0; min-height: clamp(420px, 62vh, 640px); }
.hero-news-track { position: relative; width: 100%; height: 100%; min-height: inherit; }
.hero-news-slide {
  /* Fest hell, unabhängig vom Theme: der Text liegt auf einem Foto + dunklem
     Schleier, nicht auf der normalen Seitenfläche - var(--cream) wäre im
     Hell-Theme dunkelblau und auf dem dunklen Schleier kaum lesbar. */
  position: absolute; inset: 0; display: block; color: #fff;
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .7s ease;
}
.hero-news-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-news-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--card-2);
  transform: scale(1.04); transition: transform 9s ease;
}
.hero-news-slide.is-active img { transform: scale(1); }
.hero-news-scrim {
  /* Absichtlich feste (nicht Theme-abhängige) Verdunkelung - ein Foto-Schleier
     für Text-Lesbarkeit soll immer dunkel sein, auch im hellen Theme. */
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10, 9, 8, .88) 0%, rgba(10, 9, 8, .4) 55%, rgba(10, 9, 8, .1) 100%);
}
.hero-news-content { position: absolute; left: 0; right: 0; bottom: clamp(2rem, 6vh, 4rem); z-index: 2; max-width: 920px; }
.hero-news-content h2 { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 5vw, 3.4rem); line-height: 1.08; margin: .7rem 0 .8rem; color: #fff; }
.hero-news-content p { color: rgba(255, 255, 255, .82); font-size: clamp(1rem, 1.6vw, 1.15rem); max-width: 68ch; }
.hero-news-cta { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; font-weight: 700; color: var(--orange); transition: transform .15s; }
.hero-news-slide:hover .hero-news-cta { transform: translateX(4px); }
/* Bilder-Hero-Slider: CTA als echter Button statt Text-Link mit Pfeil (für eigene
   Werbetexte/Buttons pro Bild, z.B. "Jetzt buchen" - Vorbild: disneyworld.eu) */
.hero-news-cta-btn {
  background: var(--orange); color: var(--orange-ink); padding: .75rem 1.5rem;
  border-radius: 999px; font-size: .95rem; transition: background .15s, transform .15s;
}
.hero-news-slide:hover .hero-news-cta-btn { background: var(--amber); transform: none; }
/* Pfeile/Punkte schweben wie der Schleier über dem Foto - bewusst fest hell/dunkel
   statt Theme-Variablen, sonst würden sie im Hell-Theme (weißes --ink/dunkles
   --cream) auf dem Foto kaum noch zu erkennen sein. */
.hero-news-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(10, 9, 8, .5); border: 1px solid rgba(255, 255, 255, .3);
  color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer; transition: background .15s, border-color .15s, color .15s;
}
.hero-news-arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--orange-ink); }
.hero-news-prev { left: clamp(.8rem, 3vw, 2rem); }
.hero-news-next { right: clamp(.8rem, 3vw, 2rem); }
.hero-news-dots { position: absolute; z-index: 3; bottom: 1.1rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; }
.hero-news-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .4); border: 0; cursor: pointer; transition: background .15s, transform .15s; padding: 0; }
.hero-news-dot.is-active { background: var(--orange); transform: scale(1.3); }
@media (max-width: 640px) {
  .hero-news-arrow { width: 38px; height: 38px; font-size: 1.15rem; }
}


/* Radar-Blips: Disney-Park-Namen, synchron zum rotierenden Strahl */
.park-blip {
  position: absolute; transform: translate(-50%, -50%);
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  color: var(--amber); white-space: nowrap; pointer-events: none;
  text-shadow: 0 0 10px color-mix(in oklab, var(--orange) 65%, transparent);
  opacity: 0; animation: parkBlip 12s linear infinite;
}
@keyframes parkBlip {
  0%, 90%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(.7); }
  4% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  12% { opacity: 0; transform: translate(-50%, -50%) scale(.7); }
}

/* Sternschnuppen – Disney-artiges Funkeln, global auf jeder Seite */
.star-field {
  position: fixed; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.shooting-star {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 8px 2px var(--amber), 0 0 16px 4px color-mix(in oklab, var(--orange) 50%, transparent);
  opacity: 0;
  animation-name: shootingStar;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-duration: var(--dur, 9s);
  animation-delay: var(--delay, 0s);
}
.shooting-star::before {
  content: ""; position: absolute; top: 50%; right: 0; width: 90px; height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--amber) 70%, transparent) 55%, var(--cream));
  border-radius: 999px;
}

@keyframes shootingStar {
  0%   { transform: translate(0, 0) rotate(var(--angle, 28deg)); opacity: 0; }
  2%   { opacity: 1; }
  20%  { transform: translate(var(--dx, 70vw), var(--dy, 30vh)) rotate(var(--angle, 28deg)); opacity: 0; }
  100% { transform: translate(var(--dx, 70vw), var(--dy, 30vh)) rotate(var(--angle, 28deg)); opacity: 0; }
}

/* Schneeflocken – ersetzt die Sternschnuppen im Winter-Style */
.snow-field { position: fixed; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.snowflake {
  position: absolute; top: -8%; border-radius: 50%; background: var(--cream);
  box-shadow: 0 0 4px 1px color-mix(in oklab, var(--cream) 60%, transparent);
  animation-name: snowFall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--dur, 12s);
  animation-delay: var(--delay, 0s);
}
@keyframes snowFall {
  0%   { transform: translate(0, 0); opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { transform: translate(var(--driftx, 20px), 118vh); opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  background: transparent; cursor: pointer; transition: transform .12s ease, background .15s, border-color .15s, color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: var(--orange-ink); }
.btn-primary:hover { background: var(--amber); }
.btn-ghost { border-color: var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-secondary { background: var(--card-2); color: var(--cream); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--orange); }
.btn-block { width: 100%; }
.btn-disabled { opacity: .4; pointer-events: none; }

/* ---------- Pagination ---------- */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}
.pagination-status { font-size: .9rem; color: var(--muted, var(--cream)); opacity: .75; }

/* ---------- News-Teaser (Startseite) ---------- */
.news-teaser { position: relative; }
.news-teaser::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 0 0 6px 6px;
}
.news-teaser .eyebrow { display: inline-flex; align-items: center; gap: .55rem; }
.news-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ff4d4d; flex-shrink: 0;
  animation: newsLivePulse 1.7s ease-in-out infinite;
}
@keyframes newsLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,77,.55); }
  50% { box-shadow: 0 0 0 6px rgba(255,77,77,0); }
}

/* ---------- News-Kategorien ---------- */
.news-cats { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.news-cat-link {
  font-family: var(--mono); font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  color: var(--cream-dim); background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem 1.1rem; transition: color .15s, border-color .15s, background .15s;
}
.news-cat-link:hover { border-color: color-mix(in oklab, var(--orange) 45%, var(--line)); color: var(--cream); }
.news-cat-link.is-active { background: var(--orange); border-color: var(--orange); color: var(--orange-ink); }

/* ---------- Sektionen ---------- */
.section { padding: clamp(3rem, 8vh, 5.5rem) 0; }
.section-alt { background: var(--ink-2); border-block: 1px solid var(--line); }
.section-head { margin-bottom: 2.2rem; }
.section-head.row { display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.section-head .eyebrow { margin-bottom: .5rem; }
.link-more { font-family: var(--mono); font-size: .85rem; color: var(--orange); font-weight: 600; white-space: nowrap; }
.link-more:hover { color: var(--amber); }

/* ---------- Featured Video ---------- */
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #000;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,.9);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed .consent-gate { position: absolute; inset: 0; aspect-ratio: auto; }
.featured-desc { margin-top: 1.2rem; color: var(--cream-dim); max-width: 70ch; }

/* ---------- Video-Grid ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.video-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s, border-color .18s; }
.video-card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--orange) 50%, var(--line)); }
.video-thumb { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.play-badge {
  position: absolute; inset: 0; margin: auto; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%;
  background: color-mix(in oklab, var(--orange) 92%, transparent); color: var(--orange-ink);
  font-size: 1.1rem; padding-left: 3px;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,.7); transition: transform .18s;
}
.video-card:hover .play-badge { transform: scale(1.12); }
.video-meta { padding: 1.1rem 1.2rem 1.3rem; }
.video-meta h2, .video-meta h3 { font-family: var(--display); font-weight: 600; font-size: 1.12rem; line-height: 1.25; margin-top: .5rem; }
.video-meta a:hover { color: var(--orange); }

/* ---------- Tags & Meta ---------- */
.tag {
  display: inline-block; font-family: var(--mono); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--amber);
  background: color-mix(in oklab, var(--amber) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--amber) 30%, transparent);
  padding: .2rem .55rem; border-radius: 999px; font-weight: 600;
}
.tag-draft {
  color: #e5654b;
  background: color-mix(in oklab, #e5654b 12%, transparent);
  border-color: color-mix(in oklab, #e5654b 30%, transparent);
}
.tag-more {
  color: var(--muted); background: color-mix(in oklab, var(--muted) 10%, transparent);
  border-color: var(--line); cursor: default;
}
.post-meta { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; color: var(--muted); font-size: .85rem; font-family: var(--mono); }
.post-meta time { font-size: .82rem; }

/* ---------- Post-Grid ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }
.post-grid-full { gap: 2rem; }
.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s, border-color .18s; }
.post-card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--orange) 45%, var(--line)); }
.post-cover { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--card-2); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-cover img { transform: scale(1.04); }
.post-cover-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: radial-gradient(120% 140% at 30% 20%, color-mix(in oklab, var(--orange) 14%, transparent), transparent 65%), var(--card-2);
}
.post-cover-placeholder img { width: 48px; height: 48px; border-radius: 50%; opacity: .55; }
.post-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.post-card-body h2, .post-card-body h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; line-height: 1.2; }
.post-card-body h3 { font-size: 1.15rem; }
.post-card-body a:hover { color: var(--orange); }
.post-excerpt { color: var(--cream-dim); font-size: .95rem; }
.read-more { margin-top: auto; color: var(--orange); font-weight: 600; font-size: .9rem; }
.read-more:hover { color: var(--amber); }

/* ---------- Story - /stories, Park-Seiten, Startseiten-Bereich. Layout angelehnt an
   Themenseiten wie D23: eine große "Featured"-Karte für die neueste Story, darunter ein
   Karten-Raster für den Rest. Ohne Titelbild ein fetter Farbblock mit Sparkle-Muster; wurde
   ein Titelbild hochgeladen, zeigt die Featured-Karte es als Hintergrund (Klasse .has-cover,
   Bild-URL kommt als inline background-image vom Template). ---------- */
.story-featured {
  position: relative; overflow: hidden; display: block;
  min-height: clamp(300px, 40vh, 460px);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 2.2rem; border-radius: calc(var(--radius) * 1.25);
  background:
    radial-gradient(1.5px 1.5px at 12% 22%, color-mix(in oklab, var(--amber) 55%, transparent) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 78% 68%, color-mix(in oklab, var(--amber) 55%, transparent) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 45% 85%, color-mix(in oklab, var(--amber) 45%, transparent) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 88% 15%, color-mix(in oklab, var(--amber) 45%, transparent) 0, transparent 60%),
    linear-gradient(135deg, color-mix(in oklab, var(--orange) 22%, var(--card)), var(--card) 72%);
  background-size: cover; background-position: center;
  border: 1px solid color-mix(in oklab, var(--orange) 30%, var(--line));
  box-shadow: 0 18px 40px -22px color-mix(in oklab, var(--orange) 45%, transparent);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.story-featured:hover { border-color: color-mix(in oklab, var(--orange) 55%, var(--line)); box-shadow: 0 22px 48px -20px color-mix(in oklab, var(--orange) 55%, transparent); transform: translateY(-3px); }
.story-featured.has-cover { background-color: #16130f; }
.story-featured-scrim {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(0deg, rgba(10, 9, 8, .85) 0%, rgba(10, 9, 8, .45) 55%, rgba(10, 9, 8, .15) 100%);
}
.story-featured::after {
  /* Mittig rechts statt in einer Ecke, damit sich der Stern nie mit Badge/Kategorie oben
     oder dem Weiterlesen-Button unten überschneidet. */
  content: '✦'; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); z-index: 0;
  font-size: clamp(4.5rem, 11vw, 7.5rem); line-height: 1; font-family: var(--display);
  color: color-mix(in oklab, var(--amber) 16%, transparent); pointer-events: none;
}
.story-featured.has-cover::after { color: color-mix(in oklab, var(--amber) 45%, transparent); }
.story-featured > * { position: relative; z-index: 1; }

/* Vier Ecken, fest an den Kartenrand gepinnt (nicht mehr per Flex-Verteilung, damit Badge/
   Kategorie zuverlässig ganz oben sitzen): Badge oben links, Kategorie/Datum oben rechts,
   Titel+Teaser unten links, Weiterlesen-Button unten rechts. */
.story-featured-toprow {
  position: absolute; top: clamp(1.2rem, 3vw, 1.8rem); left: clamp(1.2rem, 3vw, 1.8rem); right: clamp(1.2rem, 3vw, 1.8rem);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; z-index: 1;
}
.story-featured-bottomrow {
  position: absolute; left: clamp(1.2rem, 3vw, 1.8rem); right: clamp(1.2rem, 3vw, 1.8rem); bottom: clamp(1.2rem, 3vw, 1.8rem);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; z-index: 1;
}
.story-featured-text { flex: 1 1 auto; min-width: 0; }

.story-featured-badge {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: var(--ink); background: var(--amber);
  padding: .35rem .8rem; border-radius: 999px;
}
.story-featured h2, .story-featured h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.12; margin: 0 0 .5rem; color: var(--cream); }
.story-featured h3 { font-size: clamp(1.35rem, 2.6vw, 1.9rem); }
.story-featured-text p { font-size: 1.05rem; color: var(--cream-dim); margin: 0; }
.story-featured .post-meta { margin: 0; color: var(--cream-dim); flex-shrink: 0; }
.story-featured.has-cover h2, .story-featured.has-cover h3 { color: #fff; }
.story-featured.has-cover .story-featured-text p { color: rgba(255, 255, 255, .85); }
.story-featured.has-cover .post-meta { color: rgba(255, 255, 255, .75); }

.story-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.story-card {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .7rem;
  box-shadow: 0 10px 26px -20px rgba(0,0,0,.5);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.story-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  opacity: 0; transition: opacity .18s;
}
.story-card:hover { transform: translateY(-5px); border-color: color-mix(in oklab, var(--orange) 45%, var(--line)); box-shadow: 0 16px 34px -18px color-mix(in oklab, var(--orange) 35%, rgba(0,0,0,.5)); }
.story-card:hover::before { opacity: 1; }
.story-card-cover {
  display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--card-2);
  margin: -1.7rem -1.5rem .3rem; border-radius: var(--radius) var(--radius) 0 0;
}
.story-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.story-card:hover .story-card-cover img { transform: scale(1.04); }
.story-card-icon { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,.35); }
.story-card-cover ~ .story-card-icon { position: absolute; top: .8rem; left: .8rem; z-index: 2; margin: 0; }
.story-card:not(:has(.story-card-cover)) .story-card-icon { margin-bottom: .2rem; }
.story-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; line-height: 1.25; }
.story-card a:hover { color: var(--orange); }

.read-more-pill {
  display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start;
  background: var(--orange); color: var(--ink); font-weight: 700; font-size: .85rem;
  padding: .7rem 1.5rem; border-radius: 999px; box-shadow: 0 8px 20px -8px color-mix(in oklab, var(--orange) 60%, transparent);
  transition: background .18s, transform .18s, box-shadow .18s;
}
.read-more-pill:hover { background: var(--amber); transform: translateY(-2px); color: var(--ink); box-shadow: 0 12px 24px -8px color-mix(in oklab, var(--amber) 65%, transparent); }

/* ---------- Park-Öffnungszeiten-Leiste (Startseite) ----------
   Kompakte Zusammenfassung der /wartezeiten-Öffnungszeiten, horizontal scrollbar. */
.park-hours-bar { background: var(--card); border-block: 1px solid var(--line); padding-block: .9rem; }
.park-hours-bar-inner { display: flex; align-items: center; gap: 1.2rem; }
.park-hours-label {
  flex-shrink: 0; font-family: var(--mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .05em; color: var(--muted); white-space: nowrap;
}
.park-hours-scroll { overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.park-hours-track {
  display: flex; gap: .6rem; width: max-content;
  animation: park-hours-marquee linear infinite;
}
.park-hours-scroll:hover .park-hours-track { animation-play-state: paused; }
@keyframes park-hours-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.park-hours-pill {
  display: inline-flex; align-items: center; gap: .5rem; flex-shrink: 0;
  background: var(--card-2); border: 1px solid var(--line); border-radius: 999px;
  padding: .45rem .9rem; font-size: .82rem; white-space: nowrap;
}
.park-hours-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.park-hours-dot.is-open { background: var(--wz-green); }
.park-hours-dot.is-closed { background: var(--wz-status); }
.park-hours-name { font-weight: 600; color: var(--cream); }
.park-hours-time { font-family: var(--mono); color: var(--muted); font-size: .78rem; }
.park-hours-more { flex-shrink: 0; color: var(--orange); font-weight: 600; font-size: .85rem; white-space: nowrap; }
.park-hours-more:hover { color: var(--amber); }
@media (max-width: 760px) {
  .park-hours-label { display: none; }
}

/* ---------- Park-Weltkarte (Startseite, Admin -> Einstellungen: an/aus) ----------
   Statische Weltkarten-SVG (img/world-map.svg, aus echten Natural-Earth-Landdaten
   erzeugt) als Hintergrund, Punkte per Prozent-Position darüber (siehe
   $parkMapPins in routes/public.php) - Name erscheint erst beim Hover/Fokus, sonst
   überlappen sich die Labels bei eng beieinander liegenden Parks (Asien, Nordamerika). */
.park-map-section { padding-bottom: 0; }
.park-map {
  position: relative; width: 100%; aspect-ratio: 1000 / 500;
  background: #0a1626; overflow: hidden;
}
.park-map img { position: absolute; inset: 0; width: 100%; height: 100%; }
.park-map-pin {
  position: absolute; transform: translate(-50%, -50%); z-index: 1; padding: 10px;
  display: flex; flex-direction: column; align-items: center;
}
.park-map-pin:hover, .park-map-pin:focus-visible { z-index: 5; }
.park-map-pin-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--amber);
  border: 3px solid #fff; box-shadow: 0 0 0 5px rgba(253, 184, 39, .3), 0 4px 10px rgba(0, 0, 0, .5);
  transition: transform .2s ease;
}
.park-map-pin:hover .park-map-pin-dot, .park-map-pin:focus-visible .park-map-pin-dot { transform: scale(1.25); }
.park-map-pin-label {
  position: absolute; bottom: calc(100% + 4px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #fff; color: #16130f; font-size: .78rem; font-weight: 600;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .35);
  opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease;
}
.park-map-pin:hover .park-map-pin-label, .park-map-pin:focus-visible .park-map-pin-label {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ---------- Highlights: Foto-Karten-Karussell (Vorbild: disneyworld.eu) ----------
   Volle Foto-Karte mit Verlaufs-Überlagerung oben (Titel + Kategorie-Tag liegen direkt
   auf dem Bild). Ab Tablet-Breite aufwärts brechen die Karten einfach in eine zweite
   Zeile um statt zu scrollen (Kachelgröße bleibt gleich) - nur auf sehr schmalen
   Bildschirmen (Handy) bleibt es ein horizontal scrollbares Karussell mit Snap-Punkten. */
.highlights .wrap { max-width: 1480px; }
.highlight-carousel {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; padding-bottom: .6rem;
}
.highlight-card {
  position: relative; flex: 0 0 340px; aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) + 2px); overflow: hidden; background: var(--card-2);
  box-shadow: 0 18px 38px -18px rgba(0, 0, 0, .55);
}
.highlight-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.highlight-card:hover img { transform: scale(1.06); }
.highlight-card-overlay {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem 1.6rem; pointer-events: none;
  background: linear-gradient(to top,
    rgba(0, 0, 0, .82) 0%,
    color-mix(in oklab, var(--orange) 55%, rgba(0,0,0,.3)) 42%,
    transparent 85%);
}
.highlight-card-title {
  color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.25rem; line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}
.highlight-card-tag {
  display: inline-flex; align-items: center; gap: .45rem; margin-top: .7rem;
  color: #fff; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}
.highlight-card-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
@media (max-width: 640px) {
  .highlight-carousel {
    flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--line) transparent;
  }
  .highlight-card { flex-basis: 82vw; scroll-snap-align: start; }
}

/* ---------- Startseiten-Banner (Spotlight, Admin -> Startseiten-Banner) ---------- */
/* Volle Seitenbreite (kein Card-Inset), wie das D23-Banner auf disneyparksblog.com -
   gleiches Grundprinzip wie .hero-news (Foto + fester dunkler Schleier + Inhalt in .wrap). */
.home-banner {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-color: var(--card-2);
  min-height: clamp(380px, 55vh, 600px); display: flex; align-items: center;
}
.home-banner-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(10, 9, 8, .75) 0%, rgba(10, 9, 8, .3) 55%, rgba(10, 9, 8, .75) 100%);
}
.home-banner-inner {
  position: relative; z-index: 1; display: flex; align-items: center;
  gap: clamp(2rem, 5vw, 4rem); padding-block: clamp(2.5rem, 7vh, 4.5rem);
}
.home-banner-teaser {
  /* Kein festes Seitenverhältnis/Zuschnitt (object-fit: contain statt cover) - das
     Bild soll komplett sichtbar bleiben statt oben/unten oder links/rechts
     abgeschnitten zu werden, egal welches Format hochgeladen wird. Schatten als
     filter: drop-shadow statt box-shadow, da drop-shadow der tatsächlich sichtbaren
     (nicht-transparenten) Bildform folgt statt der rechteckigen Bild-Box - sonst
     rahmt der Schatten den transparenten Rand von PNGs mit ein. */
  flex-shrink: 0; width: clamp(240px, 34vw, 460px); max-height: clamp(220px, 42vh, 420px);
  height: auto; object-fit: contain; filter: drop-shadow(0 16px 34px rgba(0, 0, 0, .45));
}
.home-banner-content h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.08; margin: 0 0 .8rem; color: #fff;
}
.home-banner-content p { color: rgba(255, 255, 255, .85); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 62ch; margin: 0 0 1.5rem; }
@media (max-width: 760px) {
  .home-banner-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .home-banner-teaser { width: 100%; max-width: 320px; }
}

/* ---------- Story-Spotlight-Banner (Startseite, eine einzelne per Editor-Häkchen markierte
   Story) - volle Seitenbreite wie .home-banner oben, aber ohne Foto: fetter Farbverlauf +
   Sparkle-Muster + großes Wasserzeichen statt Bild, da Story bewusst textbasiert bleibt. */
.story-spotlight {
  position: relative; overflow: hidden; display: flex; align-items: center;
  min-height: clamp(360px, 48vh, 540px);
  background:
    radial-gradient(1.5px 1.5px at 8% 20%, color-mix(in oklab, var(--amber) 60%, transparent) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 92% 30%, color-mix(in oklab, var(--amber) 55%, transparent) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 25% 80%, color-mix(in oklab, var(--amber) 50%, transparent) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 60% 15%, color-mix(in oklab, var(--amber) 45%, transparent) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 78% 75%, color-mix(in oklab, var(--amber) 45%, transparent) 0, transparent 60%),
    linear-gradient(120deg, color-mix(in oklab, var(--orange) 26%, var(--ink)), var(--ink) 68%);
}
.story-spotlight::after {
  content: '✦'; position: absolute; right: clamp(-1rem, 2vw, 2rem); top: 50%; transform: translateY(-50%);
  font-size: clamp(9rem, 22vw, 16rem); line-height: 1; font-family: var(--display);
  color: color-mix(in oklab, var(--amber) 14%, transparent); pointer-events: none;
}
.story-spotlight.has-cover { background-size: cover; background-position: center; background-color: #16130f; }
.story-spotlight.has-cover::after { color: color-mix(in oklab, var(--amber) 45%, transparent); }
.story-spotlight-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 9, 8, .85) 0%, rgba(10, 9, 8, .4) 55%, rgba(10, 9, 8, .15) 100%);
}
.story-spotlight-inner { position: relative; z-index: 1; padding-block: clamp(2.5rem, 7vh, 4.5rem); max-width: 46rem; }
.story-spotlight-badge {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: var(--ink); background: var(--amber);
  padding: .4rem .9rem; border-radius: 999px; margin: 0 0 1.1rem;
}
.story-spotlight-inner .post-meta { color: rgba(255, 255, 255, .7); margin-bottom: .9rem; }
.story-spotlight-inner h2 {
  font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08; margin: 0 0 1.1rem; color: #fff;
}
.story-spotlight-inner p { color: rgba(255, 255, 255, .85); font-size: clamp(1.05rem, 1.8vw, 1.25rem); max-width: 60ch; margin: 0 0 1.6rem; }

/* ---------- Feature-Banner (mehrfach, Admin -> Startseiten-Banner) - gleicher Aufbau wie der
   große Spotlight-Banner: Hintergrundbild über die volle Breite (Pflicht), optional ein kleineres
   Teaserbild davor, dunkler Verlauf für lesbaren Text. Bildseite steuert, ob Text/Teaser links
   oder rechts sitzen. */
.feature-banner-photo {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-color: #16130f;
  min-height: clamp(300px, 42vh, 460px); display: flex; align-items: center;
}
.feature-banner-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 9, 8, .85) 0%, rgba(10, 9, 8, .4) 55%, rgba(10, 9, 8, .15) 100%);
}
.feature-banner-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); }
.feature-banner-img-right .feature-banner-inner { flex-direction: row-reverse; }
.feature-banner-img {
  flex: 1 1 0; min-width: 0; max-width: 560px; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 16px 34px rgba(0, 0, 0, .25);
}
.feature-banner-teaser {
  flex-shrink: 0; width: clamp(220px, 30vw, 400px); max-height: clamp(200px, 38vh, 360px);
  height: auto; object-fit: contain; filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .4));
}
.feature-banner-content { flex: 1 1 0; min-width: 0; max-width: 560px; }
.feature-banner-content h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.12; margin: 0 0 .7rem; color: #fff;
}
.feature-banner-content p { color: rgba(255, 255, 255, .85); font-size: clamp(1rem, 1.4vw, 1.1rem); max-width: 52ch; margin: 0 0 1.3rem; }
@media (max-width: 760px) {
  .feature-banner-inner, .feature-banner-img-right .feature-banner-inner { flex-direction: column; align-items: flex-start; }
  .feature-banner-img, .feature-banner-teaser { max-width: 100%; width: 100%; }
}

/* Abgedunkelte Variante für die Story-Feature-Banner auf /stories - festes Dunkelblau statt
   Theme-Farbe (gleiches Navy wie .section-navy/D23-Vorbild disneyparksblog.com), damit es auch
   im hellen Farbschema dunkel bleibt. Betrifft nur Story, die Feature-Banner auf der Startseite
   bleiben unverändert. */
.feature-banner-dark { background: linear-gradient(160deg, #17314d, #0d1b2e); }

/* ---------- Page-Head ---------- */
.page-head { padding: clamp(3rem, 9vh, 5.5rem) 0 1rem; border-bottom: 1px solid var(--line); position: relative; }
.page-head .eyebrow { margin-bottom: .8rem; }
.page-head.center { text-align: center; border-bottom: 0; }
.maintenance-page { min-height: calc(100vh - 74px); display: flex; align-items: center; justify-content: center; }
.maintenance-page .page-head { padding-block: 2rem; width: 100%; }

/* ---------- Park-Hub-Seite (/parks/:code) ---------- */
.park-hero {
  position: relative; overflow: hidden; min-height: clamp(420px, 58vh, 620px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  background-size: cover; background-position: center; background-color: #16130f;
}
.park-hero-video { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.park-hero-video iframe {
  position: absolute; top: 50%; left: 50%; width: 177.78vh; height: 56.25vw;
  min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); border: 0;
}
.park-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, .55) 0%, rgba(10, 9, 8, .3) 45%, rgba(10, 9, 8, .8) 100%);
}
.park-hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; padding-block: clamp(2rem, 6vh, 3.5rem); }
.park-hero-icon { width: 60px; height: 60px; border-radius: 14px; object-fit: cover; margin-bottom: 1rem; box-shadow: 0 10px 26px rgba(0, 0, 0, .4); }
.park-hero-title { margin: 0 0 1.4rem; font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.6vw, 3.2rem); color: #fff; }
.park-hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
.park-hero-pill {
  background: #dbe9f7; color: #123a5c; font-weight: 700; font-size: .92rem;
  padding: .7rem 1.7rem; border-radius: 999px; transition: background .15s, transform .15s;
}
.park-hero-pill:hover { background: #fff; transform: translateY(-2px); }

/* Fest dunkelblau statt Theme-Variable - bewusster Stil-Bruch (Vorbild:
   disneyparksblog.com), soll bei jedem Theme gleich aussehen. Wiederverwendet auf
   der Park-Seite (News-Bereich) und der Baustelle-Seite (jedes zweite Projekt). */
.section-navy { background: #0d1b2e; }
.section-navy .section-title, .section-navy .eyebrow { color: #fff; }
.section-navy .link-more { color: #dbe9f7; }
.section-navy .empty { color: #b7c9dd; }

.park-featured-news { position: relative; display: block; margin-bottom: 2rem; }
.park-featured-news-img {
  display: block; width: 100%; aspect-ratio: 21 / 9; object-fit: cover;
  border-radius: calc(var(--radius) + 4px); transition: filter .2s;
}
.park-featured-news-img-placeholder { background: linear-gradient(135deg, #17314d, #0d1b2e); }
.park-featured-news:hover .park-featured-news-img { filter: brightness(.9); }
.park-featured-news-card {
  position: relative; z-index: 1; background: #fff; color: #12233b; border-radius: var(--radius);
  padding: 1.6rem 1.8rem; max-width: 560px; margin: -3.5rem 0 0 clamp(1rem, 4vw, 3rem);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .4);
}
.park-featured-news-eyebrow { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: #4a76a8; font-weight: 700; margin: 0 0 .5rem; }
.park-featured-news-card h3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.15; margin: 0 0 .6rem; color: #12233b; }
.park-featured-news-card p { font-size: .95rem; color: #3c536e; margin: 0 0 .8rem; }
.park-featured-news-card .read-more { color: #123a5c; font-weight: 700; }
@media (max-width: 640px) {
  .park-featured-news-img { aspect-ratio: 4 / 3; }
  .park-featured-news-card { margin: -2rem .8rem 0; max-width: none; padding: 1.2rem 1.3rem; }
}

/* Bilder-Slider auf der Park-Seite: 3 grosse Bilder gleichzeitig (Post-Titelbilder,
   verlinkt), wechselt automatisch alle 10s (siehe js/main.js), darunter Thumbnails
   aller Bilder zum direkten Anspringen. */
.park-photo-large-row { display: flex; align-items: center; gap: .8rem; }
.park-photo-large-grid { flex: 1; min-width: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.park-photo-large {
  display: none; position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--card-2);
}
.park-photo-large.is-visible { display: block; }
.park-photo-large img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.park-photo-large:hover img { transform: scale(1.05); }
.park-photo-large-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .6rem .8rem;
  background: linear-gradient(0deg, rgba(10, 9, 8, .85), transparent);
  color: #fff; font-size: .82rem; font-weight: 600; line-height: 1.3;
}
.park-photo-arrow {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--line); color: var(--cream); font-size: 1.2rem; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.park-photo-arrow:hover { background: var(--orange); color: var(--orange-ink); border-color: var(--orange); }
.park-photo-thumbs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; justify-content: center; }
.park-photo-thumb {
  width: 64px; height: 48px; border-radius: 6px; overflow: hidden; border: 2px solid transparent;
  padding: 0; cursor: pointer; opacity: .55; transition: opacity .15s, border-color .15s;
}
.park-photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.park-photo-thumb:hover { opacity: .85; }
.park-photo-thumb.is-active { opacity: 1; border-color: var(--orange); }
@media (max-width: 760px) {
  .park-photo-large-grid { grid-template-columns: 1fr; }
  .park-photo-large.is-visible ~ .park-photo-large.is-visible { display: none; }
}

/* ---------- Baustelle (/baustelle) - Update-Feed je Bauprojekt ---------- */
/* Nebeneinander statt untereinander - normale (nicht spaltenweise sortierte)
   Grid-Reihenfolge, damit das neueste Update immer oben links steht und die
   Reihenfolge zeilenweise nach Datum bleibt (siehe ORDER BY created_at DESC). */
.baustelle-feed { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; align-items: start; }
.baustelle-update {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; transition: border-color .15s, transform .15s;
}
.baustelle-update:hover { border-color: var(--orange); transform: translateY(-2px); }
.baustelle-update-date { display: block; font-size: .82rem; color: var(--muted); margin-bottom: .5rem; }
.baustelle-update p { margin: 0 0 .8rem; color: var(--cream); line-height: 1.6; }
.baustelle-update p:last-child { margin-bottom: 0; }
.baustelle-update-img {
  display: block; width: 100%; aspect-ratio: 16 / 9; max-height: 420px; object-fit: cover;
  border-radius: var(--radius-sm); margin-top: .4rem; cursor: zoom-in;
}
/* Angepinnte "Recap"-Updates - bis zu zwei nebeneinander (siehe
   admin_enforce_baustelle_pin_limit()), jeweils mit vollem Text ohne Kürzung. */
.baustelle-pinned-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.2rem; margin: 0 auto 1.4rem; max-width: 1180px;
}
.baustelle-update-pinned {
  border-color: var(--orange); background: color-mix(in oklab, var(--orange) 8%, var(--card));
}
.baustelle-update-pinned .baustelle-update-text { -webkit-line-clamp: unset; overflow: visible; }
.baustelle-update-pinned .baustelle-more-btn { display: none; }
.baustelle-pin-badge {
  display: inline-block; margin-bottom: .6rem; padding: .3rem .7rem; border-radius: 999px;
  background: var(--orange); color: var(--orange-ink); font-size: .78rem; font-weight: 700;
}
.baustelle-gallery img { cursor: zoom-in; }
.baustelle-update .prose-social { margin: .6rem 0 0; }
.baustelle-news-link {
  display: flex; align-items: flex-start; gap: .9rem; margin-top: .8rem; padding: .7rem .9rem;
  background: var(--card-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s, background .15s;
}
.baustelle-news-link:hover { border-color: var(--orange); background: color-mix(in oklab, var(--orange) 10%, var(--card-2)); }
.baustelle-news-link img { width: 68px; height: 68px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.baustelle-news-link-text { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.baustelle-news-link-text strong { font-size: .95rem; font-weight: 600; color: var(--cream); line-height: 1.3; }
.baustelle-news-link-excerpt {
  font-size: .82rem; font-weight: 400; color: var(--muted); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}

/* Feed-Karten (nicht angepinnt): langer Text wird auf ein paar Zeilen gekürzt,
   "Mehr anzeigen" blendet den Rest ein - sonst reißen einzelne lange Updates
   das Karten-Raster optisch auseinander. */
.baustelle-feed .baustelle-update-text {
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.baustelle-feed .baustelle-update-text.is-expanded { display: block; overflow: visible; }
.baustelle-more-btn {
  display: none; margin-top: .3rem; padding: 0; background: none; border: 0;
  color: var(--orange); font-weight: 600; font-size: .88rem; cursor: pointer;
}
.baustelle-more-btn.is-visible { display: inline-block; }
.back-to-top-btn {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 40;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange); color: var(--orange-ink); border: 0; font-size: 1.3rem; line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35); cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .15s, background .15s;
}
.back-to-top-btn.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top-btn:hover { background: var(--amber); transform: translateY(-3px); }
.back-to-top-btn[hidden] { display: none; }

/* ---------- Article / Prose ---------- */
.article-head { padding: clamp(2.5rem, 7vh, 4rem) 0 1.5rem; }
.article-title { font-size: clamp(2rem, 5.5vw, 3.6rem); margin: 1rem 0; }
.article-lead { font-size: 1.2rem; color: var(--cream-dim); max-width: 60ch; }
.back-link { color: var(--orange) !important; }
/* Feste aspect-ratio statt "Höhe passt sich dem Bild an" - sonst reserviert der
   Browser vorm Laden keinen Platz und die Seite springt beim Nachladen (schlecht
   für Core Web Vitals/CLS, ein Google-Rankingfaktor). */
.article-cover { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin: 1rem 0 2rem; aspect-ratio: 21 / 9; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.prose { font-size: 1.08rem; color: var(--cream-dim); }
.prose > * + * { margin-top: 1.15rem; }
.prose h1, .prose h2, .prose h3 { font-family: var(--display); color: var(--cream); line-height: 1.2; letter-spacing: -.01em; margin-top: 2.2rem; }
.prose h1 { font-size: 1.9rem; }
.prose h2 { font-size: 1.55rem; }
.prose h3 { font-size: 1.25rem; }
.prose a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--amber); }
.prose strong { color: var(--cream); }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li + li { margin-top: .4rem; }
.prose img { border-radius: var(--radius-sm); border: 1px solid var(--line); margin-block: 1.5rem; cursor: zoom-in; }
.prose img.img-left { float: left; margin: .3rem 1.4rem 1rem 0; max-width: 45%; }
.prose img.img-right { float: right; margin: .3rem 0 1rem 1.4rem; max-width: 45%; }
.prose img.img-center { display: block; margin-inline: auto; }

/* Lightbox für Beitragsbilder - feste dunkle Farben unabhängig vom Theme, da immer über ein Foto gelegt */
.article-cover img { cursor: zoom-in; }
.img-lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: none; align-items: center; justify-content: center;
  padding: 2rem; background: rgba(10, 10, 10, .9);
  opacity: 0; transition: opacity .2s ease;
}
.img-lightbox.is-open { display: flex; opacity: 1; }
.img-lightbox-img {
  max-width: 90vw; max-height: 90vh; cursor: default;
  border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.img-lightbox-close {
  position: absolute; top: 1.2rem; right: 1.5rem; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .12); color: #fff;
  font-size: 1.8rem; line-height: 1; cursor: pointer;
  transition: background .15s ease;
}
.img-lightbox-close:hover, .img-lightbox-close:focus-visible { background: rgba(255, 255, 255, .25); }
body.img-lightbox-open { overflow: hidden; }
.prose .prose-video {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-sm);
  overflow: hidden; margin-block: 1.5rem; border: 1px solid var(--line); background: #000;
}
.prose .prose-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.prose .prose-video .consent-gate { position: absolute; inset: 0; aspect-ratio: auto; }
/* Twitter/Instagram/Threads-Einbettungen (siehe includes/helpers.php socialEmbedScripts()) -
   Grundstyling für den Zustand vor dem Laden des Plattform-Skripts (bzw. ganz ohne
   Marketing-Cookie-Zustimmung, dann bleibt es bei diesem einfachen Rahmen+Link). Sobald
   das jeweilige Skript lädt, übernimmt es das Styling der blockquote selbst. */
.prose .prose-social { margin: 1.8rem 0; display: flex; justify-content: center; }
.prose .prose-social blockquote {
  margin: 0; width: 100%; max-width: 680px; padding: 1.4rem 1.6rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card);
}
.prose .prose-social blockquote::before { content: none; }
.prose .prose-social blockquote a { color: var(--orange); font-weight: 600; }
.consent-gate {
  position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
  border: 0; margin: 0; padding: 0; cursor: pointer; background: #000;
  display: flex; align-items: flex-end; justify-content: center;
}
.consent-gate img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.consent-gate-btn {
  position: relative; z-index: 1; margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: .5rem;
  background: color-mix(in oklab, var(--orange) 92%, transparent); color: var(--orange-ink);
  border: 0; border-radius: 999px; padding: .55rem 1.1rem; font-weight: 600; font-size: .9rem;
}
.prose span[style*="font-size"] { line-height: 1.4; }
/* Zitate im Blizzard-"BluePost"-Stil - farblich klar abgehoben vom restlichen Text */
.prose blockquote {
  position: relative; margin: 1.8rem 0; padding: 1.2rem 1.5rem 1.2rem 3.3rem;
  border-radius: 12px; font-style: normal; color: var(--cream);
  background: linear-gradient(135deg, rgba(14, 144, 212, .14), rgba(14, 144, 212, .04));
  border: 1px solid rgba(14, 144, 212, .35); border-left: 4px solid #0e90d4;
}
.prose blockquote::before {
  content: ""; position: absolute; left: 1.15rem; top: 1.25rem; width: 20px; height: 20px;
  background-color: #3db2ff;
  -webkit-mask: url('/img/mickey-icon.svg') no-repeat center / contain;
  mask: url('/img/mickey-icon.svg') no-repeat center / contain;
}
.prose blockquote p { margin: 0; }
.prose blockquote p + p { margin-top: .6rem; }

/* Spoiler-Block (:::spoiler ... :::) - natives <details>, daher ohne JS
   standardmäßig zugeklappt; nur die Pfeil-Drehung beim Öffnen ist CSS. */
.prose details.prose-spoiler {
  margin: 1.8rem 0; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); overflow: hidden;
}
.prose details.prose-spoiler summary {
  cursor: pointer; padding: 1rem 1.3rem; font-family: var(--display); font-weight: 600;
  color: var(--cream); list-style: none; display: flex; align-items: center; gap: .65rem;
  user-select: none;
}
.prose details.prose-spoiler summary::-webkit-details-marker { display: none; }
.prose details.prose-spoiler summary::before {
  content: "▶"; font-size: .65em; color: var(--orange); transition: transform .15s ease;
  flex-shrink: 0;
}
.prose details.prose-spoiler[open] summary::before { transform: rotate(90deg); }
.prose details.prose-spoiler summary:hover { color: var(--orange); }
.prose details.prose-spoiler > *:not(summary) { padding: 0 1.3rem 1.2rem; margin-top: 0; }
.prose details.prose-spoiler > summary + * { margin-top: -.3rem; }
.prose code {
  font-family: var(--mono); font-size: .9em;
  background: var(--card-2); padding: .15em .4em; border-radius: 5px; border: 1px solid var(--line);
}
.prose pre { background: var(--card-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.2rem; overflow-x: auto; }
.prose pre code { background: none; border: 0; padding: 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }
.prose th { background: var(--card-2); color: var(--cream); }

/* ---------- Quellen ---------- */
.sources-box { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.sources-label { font-family: var(--mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: .5rem; }
.sources-list { list-style: none; display: grid; gap: .3rem; font-size: .9rem; color: var(--muted); }
.sources-list a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.sources-list a:hover { color: var(--amber); }
.fact-check-label { margin-top: 1.2rem; }
.post-signature { clear: both; margin-top: 2rem; font-size: .85rem; color: var(--muted); }
.post-signature strong { color: var(--cream-dim); }

/* ---------- Teilen-Buttons (Beitragsseite) ---------- */
.share-box { display: flex; align-items: center; gap: .9rem; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.share-label { font-family: var(--mono); font-size: .8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.share-buttons { display: flex; gap: .6rem; }
.share-buttons .social-icon { width: 42px; height: 42px; }
.share-buttons .social-icon svg { width: 16px; height: 16px; }
.share-copy-btn { cursor: pointer; }
.share-copy-btn.is-copied { color: var(--orange); border-color: var(--orange); }

/* ---------- Beitragsnavigation (Vorheriger/Nächster) ---------- */
.post-pagination { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.post-pagination-link {
  display: grid; gap: .4rem; padding: 1.1rem 1.3rem; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--line); transition: border-color .15s;
}
.post-pagination-link:hover { border-color: color-mix(in oklab, var(--orange) 45%, var(--line)); }
.post-pagination-next { text-align: right; }
.post-pagination-dir { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--orange); }
.post-pagination-title { font-family: var(--display); font-weight: 600; color: var(--cream); }

/* ---------- Related / CTA ---------- */
.related-list { list-style: none; display: grid; gap: .7rem; margin-top: 1rem; }
.related-list a { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--cream); }
.related-list a:hover { color: var(--orange); }
.cta-box {
  margin-top: 3rem; padding: 2rem; border-radius: var(--radius);
  background: linear-gradient(135deg, color-mix(in oklab, var(--orange) 16%, var(--card)), var(--card));
  border: 1px solid color-mix(in oklab, var(--orange) 30%, var(--line));
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cta-box p { font-family: var(--display); font-weight: 600; font-size: 1.3rem; }

.empty { color: var(--muted); font-size: 1.1rem; padding: 2rem 0; }

/* ---------- Footer ---------- */
.site-footer {
  /* Fest dunkles Navy statt der Theme-Variablen (gleiche Blautöne wie das Winter-Theme/
     D23-Vorbild, s. .feature-banner-dark) - der Footer soll unabhängig vom aktiven Theme
     immer in diesem Blau bleiben, damit das helle Logo lesbar bleibt. */
  --ink: #0b1420; --ink-2: #101c2c; --card: #142236; --card-2: #1a2b42; --line: #24374f;
  --cream: #eef6ff; --cream-dim: #c9dcef; --muted: #7f9ab3; --orange: #4fa8e0; --amber: #8fd6ff;
  border-top: 1px solid var(--line); background: var(--ink-2); margin-top: 2rem; color: var(--cream-dim);
}
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; padding-block: 3rem 2rem; align-items: start; justify-items: start; }
.footer-brand { display: flex; gap: .9rem; align-items: center; }
.footer-brand .brand-wordmark { border-radius: 0; width: 208px; height: 44px; flex-shrink: 0; }
.footer-tag { color: var(--muted); font-size: .9rem; max-width: 32ch; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; width: 100%; }
.footer-links a { color: var(--cream-dim); font-size: .95rem; }
.footer-links a:hover { color: var(--orange); }
.footer-social { display: flex; flex-direction: row; flex-wrap: wrap; gap: .6rem; align-items: center; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--card-2); border: 1px solid var(--line); color: var(--cream-dim);
  transition: color .15s, border-color .15s, background .15s;
}
.social-icon:hover { color: var(--orange); border-color: var(--orange); background: var(--card); }
.footer-legal-wrap { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.footer-disclaimer { color: var(--muted); font-size: .76rem; line-height: 1.5; max-width: 62ch; }
.footer-legal { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 1.3rem; color: var(--muted); font-size: .85rem; font-family: var(--mono); flex-wrap: wrap; }
.footer-legal-links { display: flex; align-items: center; gap: 1.3rem; }
.footer-admin { color: var(--muted); }
.footer-admin:hover { color: var(--orange); }
.footer-cookie-btn { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; }

/* ---------- Werbeplätze (AdSense) ---------- */
.ad-slot-left, .ad-slot-right { display: none; }
@media (min-width: 1600px) {
  .ad-slot-left, .ad-slot-right { display: block; position: fixed; top: 50%; transform: translateY(-50%); width: 160px; z-index: 20; }
  .ad-slot-left { left: 24px; }
  .ad-slot-right { right: 24px; }
}
.ad-slot-footer { max-width: 728px; margin: 2.5rem auto 0; text-align: center; }
.ad-slot-label { display: block; font-family: var(--mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .4rem; }

/* ---------- In-Content-Werbeplätze (Startseite, Park/D23, News, Wartezeiten, Baustelle) ----------
   Gleiche Logik/Gating wie Links-Rechts-Footer (partials/ads.php), nur mittig im Content
   statt am Rand. .ad-slot-news sitzt direkt im News-Kachel-Grid und muss deshalb über
   grid-column volle Breite einnehmen statt wie eine normale Kachel schmal zu sein. */
.ad-slot-home1, .ad-slot-home2, .ad-slot-park, .ad-slot-wartezeiten, .ad-slot-baustelle {
  max-width: 728px; margin: 2.5rem auto; text-align: center;
}
.ad-slot-news { grid-column: 1 / -1; max-width: 728px; margin: 0 auto; text-align: center; }

/* ---------- Cookie-Consent-Banner ---------- */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink-2); border-top: 1px solid var(--line);
  padding: 1.2rem clamp(1.1rem, 4vw, 2.5rem); box-shadow: 0 -6px 24px rgba(0,0,0,.35);
}
.consent-inner { max-width: var(--wrap); margin-inline: auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.consent-text { flex: 1; min-width: 240px; color: var(--cream-dim); font-size: .9rem; }
.consent-text a { color: var(--orange); text-decoration: underline; }
.consent-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.consent-panel { max-width: var(--wrap); margin: .8rem auto 0; display: grid; gap: .7rem; }
.consent-panel[hidden] { display: none; }
.consent-option { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem .9rem; background: var(--card); border: 1px solid var(--line); border-radius: 10px; font-size: .88rem; }
.consent-option strong { color: var(--cream); }
.consent-option small { display: block; color: var(--muted); font-weight: 400; }

/* ---------- Formulare (Kontakt) ---------- */
.field { display: grid; gap: .45rem; margin-bottom: 1.1rem; }
.field-label { font-size: .85rem; font-weight: 600; color: var(--cream-dim); }
.contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=number], .contact-form input[type=file], .contact-form textarea, .contact-form select {
  width: 100%; font-family: var(--body); font-size: .98rem; color: var(--cream);
  background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: .8rem .95rem;
  transition: border-color .15s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--orange); outline: none; }
.contact-form textarea { resize: vertical; }
.contact-form select { appearance: auto; cursor: pointer; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.required-mark { color: var(--orange); font-weight: 700; }
.hint { color: var(--muted); font-size: .85rem; }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.checkbox { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; color: var(--cream-dim); cursor: pointer; margin-bottom: 1.1rem; }
.checkbox input { width: auto; margin-top: .2rem; }
.newsletter-form { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 1.4rem; }
.newsletter-form input[type=email] {
  flex: 1 1 280px; max-width: 360px; font-family: var(--body); font-size: .98rem; color: var(--cream);
  background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: .8rem 1.2rem;
  transition: border-color .15s;
}
.newsletter-form input[type=email]:focus { border-color: var(--orange); outline: none; }
.newsletter-privacy-hint { margin-top: 1rem; }
.alert { padding: .9rem 1.1rem; border-radius: 10px; font-size: .92rem; font-weight: 500; margin-bottom: 1.4rem; }
.alert-error { background: color-mix(in oklab, #e5654b 16%, transparent); border: 1px solid color-mix(in oklab, #e5654b 40%, transparent); color: #ffd7cd; }
.alert-success { background: color-mix(in oklab, #5bbf7a 16%, transparent); border: 1px solid color-mix(in oklab, #5bbf7a 40%, transparent); color: #d4f5df; }

/* ---------- Clips ---------- */
.clip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.6rem; }
.clip-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.clip-card video { width: 100%; aspect-ratio: 16/9; background: #000; display: block; }
.clip-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.clip-card-body h2 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; }

/* ---------- Wartezeiten ---------- */
.wz-legend { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin-top: 1.4rem; }
.wz-legend-item { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--cream-dim); }
.wz-jump { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.wz-jump a {
  font-family: var(--mono); font-size: .8rem; font-weight: 600; color: var(--cream-dim);
  background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem;
  transition: color .15s, border-color .15s;
}
.wz-jump a:hover { color: var(--orange); border-color: color-mix(in oklab, var(--orange) 50%, var(--line)); }

.wz-park { margin-bottom: 2.4rem; scroll-margin-top: 1.5rem; }
.wz-park-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: .4rem .8rem; margin-bottom: 1rem; border-bottom: 1px solid var(--line); padding-bottom: .7rem; }
.wz-park-head h2 { font-family: var(--display); font-weight: 600; font-size: 1.25rem; }
.wz-park-hours { font-family: var(--mono); font-size: .82rem; color: var(--cream-dim); white-space: nowrap; }
.wz-table-wrap { overflow-x: auto; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.wz-table { width: 100%; border-collapse: collapse; }
.wz-table th {
  text-align: left; font-family: var(--mono); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); padding: .85rem 1.1rem; border-bottom: 1px solid var(--line);
  background: var(--ink-2); white-space: nowrap;
}
.wz-table th:last-child, .wz-table td:last-child { text-align: right; }
.wz-table td { padding: .75rem 1.1rem; border-bottom: 1px solid var(--line); font-size: .92rem; vertical-align: middle; }
.wz-table tr:last-child td { border-bottom: 0; }
.wz-table tr:hover td { background: color-mix(in oklab, var(--orange) 6%, transparent); }
.wz-badge {
  display: inline-block; min-width: 3.4rem; text-align: center;
  font-family: var(--mono); font-size: .82rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 2px 8px -2px rgba(0,0,0,.5);
}
.wz-badge-green  { background: var(--wz-green); color: var(--wz-green-ink); }
.wz-badge-yellow { background: var(--wz-yellow); color: var(--wz-yellow-ink); }
.wz-badge-red    { background: var(--wz-red); color: var(--wz-red-ink); }
.wz-badge-status { background: var(--wz-status); color: var(--wz-status-ink); min-width: auto; }
.wz-empty { color: var(--cream-dim); font-size: .9rem; }
.wz-updated { margin-top: 1.6rem; font-size: .8rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
/* Eigener, breiterer Umschaltpunkt für die Kopf-Navigation: mit 7 Menüpunkten (inkl. Lexikon) +
   Suche + YouTube-Button + Sprachumschalter passt das ab ca. 1150px nicht mehr sauber in eine Zeile -
   ab hier lieber das Hamburger-Menü statt einer überlaufenden/abgeschnittenen Navigationsleiste. */
@media (max-width: 1150px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line);
    padding: .5rem clamp(1.1rem, 4vw, 2.5rem) 1.3rem;
    transform: translateY(-120%); transition: transform .28s ease; z-index: 40;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav-dropdown-toggle { padding: .85rem 0; border-bottom: 1px solid var(--line); cursor: default; }
  .nav-dropdown-toggle::after { display: none; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: 0; background: none; margin: 0; padding: 0 0 .4rem 1rem;
  }
  .nav-dropdown-menu a { padding: .65rem 0; border-radius: 0; font-size: .92rem; }
  .nav-cta { margin-top: .8rem; text-align: center; }
  .site-nav .nav-search { align-self: stretch; order: -1; margin-bottom: .8rem; }
  .site-nav .nav-search input[type="search"] { width: auto; flex: 1; }
  .site-nav .nav-lang { align-self: flex-start; margin-top: .8rem; padding: .3rem .65rem; border-bottom: 0; }
}
@media (max-width: 760px) {
  .section-head.row { align-items: start; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Motion-Präferenz ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
