/* SchlagerTimes — helles Magazinlayout nach Kundenvorgabe:
   blaugrauer Seitengrund, weisser Inhalt, Orange als Leitfarbe.

   Kontraste geprüft (WCAG AA):
   Text #1c1c1c auf Weiss 16,7:1 · auf Seitengrund #e4edf2 14,3:1
   Grau #666 auf Weiss 5,74:1 (nur Nebenangaben) · Schwarz auf Orange 4,72:1
   Orange-Text #8f4e00 auf Weiss 6,45:1, auf Seitengrund 6,39:1
   Orange #c36d00 traegt auf hellem Grund nur 3,8:1 und bleibt deshalb
   grossen, fetten Elementen vorbehalten — kleine orange Schrift immer #8f4e00.
   Weisse Schrift auf Orange waere 3,81:1 und wird nirgends verwendet. */

:root {
    --papier:       #ffffff;   /* Inhalt: Kacheln, Kaesten, Bahnen */
    --seite:        #e4edf2;   /* Hintergrund der ganzen Seite */
    --flaeche:      #f2f2f2;   /* abgesetzte Bereiche innerhalb des Inhalts */
    --schwarz:      #1c1c1c;   /* Ueberschriften und Lesetext */
    --grau:         #666666;   /* nur Nebenangaben: Datum, Lesedauer, Nachweise */
    --linie:        #d5e0e8;

    --orange:       #c36d00;   /* Markenfarbe: Flaechen, Balken, Schaltflaechen */
    --orange-text:  #8f4e00;   /* orange Schrift auf hellem Grund */
    --orange-tief:  #6b3a00;   /* grosse dunkle Flaechen, z. B. Aufmacher */
    --orange-hell:  #ffb457;   /* orange Schrift auf dunklem Grund */

    --blau:         #1d3a6b;   /* nur Akzent: Rubrikmarken, einzelne Hinweise */

    --schrift-titel: 'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --schrift-text:  'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --breite: 1320px;
    --schmal: 900px;
    --radius: 6px;
    --schatten: 0 1px 2px rgba(20, 21, 25, .05), 0 6px 20px rgba(20, 21, 25, .07);
}

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

html { overflow-x: clip; }

body {
    margin: 0;
    background: var(--seite);
    color: var(--schwarz);
    font-family: var(--schrift-text);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;

    /* Sticky-Footer: bei kurzen Seiten (leere Suche, Danke, 404) würde der Fuß
       sonst mitten im Bild enden und darunter ein leerer Streifen stehen bleiben. */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body > .fuss { margin-top: auto; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-text); text-underline-offset: 3px; }
a:hover { color: var(--schwarz); }

/* Open Sans ist breiter als eine schmale Schlagzeilenschrift: Versalien nur noch
   bei kurzen Marken und Schaltflaechen, Ueberschriften laufen normal und dafuer
   fett und eng gesetzt. */
h1, h2, h3, h4 {
    font-family: var(--schrift-titel);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -.015em;
    margin: 0 0 .4em;
    color: var(--schwarz);
}

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

.skip {
    position: absolute; left: -9999px;
    background: var(--orange); color: var(--schwarz);
    padding: 12px 20px; z-index: 200; font-weight: 700;
}
.skip:focus { left: 0; top: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.bahn { max-width: var(--breite); margin: 0 auto; padding: 0 24px; }
.bahn--schmal { max-width: var(--schmal); }

/* Weisse Tafel auf blaugrauem Grund — trägt den Inhalt aller Unterseiten.
   Die Startseite bekommt sie nicht, dort stehen einzelne Kacheln. */
.tafel > section { padding: clamp(22px, 2.6vw, 34px) 0; }

.tafel > section > .bahn,
.tafel > section > .bahn--schmal {
    background: var(--papier);
    border: 1px solid var(--linie);
    border-radius: var(--radius);
    padding: clamp(22px, 3vw, 40px);
}

/* Innerhalb der Tafel braucht ein abgesetzter Abschnitt keine eigene Farbe mehr */
.tafel > .abschnitt--grau { background: none; border-block: 0; }

/* Kopfbereich */

.kopf {
    position: sticky; top: 0; z-index: 50;
    background: var(--papier);
    border-bottom: 1px solid var(--linie);
    transition: background .28s ease, border-color .28s ease;
}

.kopf__innen {
    max-width: var(--breite); margin: 0 auto; padding: 14px 24px;
    display: flex; align-items: center; gap: 28px;
}

.marke { text-decoration: none; flex-shrink: 0; display: inline-flex; align-items: center; min-height: 44px; }
.marke img { width: auto; height: clamp(46px, 5vw, 64px); }

.hauptnav { display: flex; gap: 2px; margin-left: auto; flex-wrap: wrap; }

.hauptnav a {
    color: var(--schwarz);
    text-decoration: none;
    padding: 10px 13px;
    font-family: var(--schrift-titel);
    font-size: 19px; font-weight: 600; text-transform: uppercase; letter-spacing: .01em;
    min-height: 44px;
    display: inline-flex; align-items: center;
    border-bottom: 3px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.hauptnav a:hover { color: var(--orange-text); border-bottom-color: var(--orange); }
.hauptnav a[aria-current="page"] { color: var(--orange-text); border-bottom-color: var(--orange); }

.hauptnav__suche { gap: 8px; }
.hauptnav__suche svg { flex-shrink: 0; }

/* Klappmenüs

   Ohne JavaScript öffnet :hover und :focus-within — damit funktioniert das Menü
   auch mit Tastatur und ohne Skript. Das Skript setzt zusätzlich aria-expanded
   und macht den Schalter auf Touchgeräten nutzbar, wo es kein Überfahren gibt. */

.navpunkt { position: relative; display: flex; align-items: center; }

.navpunkt__schalter {
    background: none; border: 0; cursor: pointer;
    color: inherit; font-size: 13px; line-height: 1;
    padding: 10px 6px 10px 0; margin-left: -8px;
    min-height: 44px; min-width: 28px;
}
.navpunkt__schalter span[aria-hidden] { display: inline-block; transition: transform .2s ease; }

.untermenue {
    position: absolute; top: 100%; left: 0; z-index: 60;
    display: none; min-width: 232px;
    background: var(--papier);
    border: 1px solid var(--linie);
    border-top: 3px solid var(--orange);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--schatten);
    padding: 6px 0;
}

.navpunkt:hover > .untermenue,
.navpunkt:focus-within > .untermenue,
.navpunkt.ist-offen > .untermenue { display: block; }

.navpunkt:hover > .navpunkt__schalter span[aria-hidden],
.navpunkt.ist-offen > .navpunkt__schalter span[aria-hidden] { transform: rotate(180deg); }

.untermenue a {
    display: flex; width: 100%;
    padding: 9px 18px; margin: 0;
    font-size: 16px; font-weight: 600; letter-spacing: 0;
    border-bottom: 0; border-left: 3px solid transparent;
    min-height: 44px; align-items: center;
}
.untermenue a:hover,
.untermenue a[aria-current="page"] {
    background: var(--flaeche); border-bottom: 0;
    border-left-color: var(--orange); color: var(--orange-text);
}

.burger { display: none; }

/* Abschnitte */

section { padding: clamp(36px, 4.4vw, 60px) 0; }

/* Abgesetzter Abschnitt: auf dem blaugrauen Seitengrund hebt Weiss ab, nicht Grau */
.abschnitt--grau { background: var(--papier); border-block: 1px solid var(--linie); }

.abschnitt-kopf {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; margin-bottom: 26px; flex-wrap: wrap;
}

.abschnitt-kopf h2, .abschnitt-titel {
    font-size: clamp(22px, 2.5vw, 30px);
    margin: 0; line-height: 1.2;
    position: relative; padding-bottom: 10px;
}

/* kurzer oranger Strich unter der Ueberschrift */
.abschnitt-kopf h2::after, .abschnitt-titel::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 68px; height: 4px; background: var(--orange);
}

.mehr-link {
    font-family: var(--schrift-titel);
    font-size: 18px; font-weight: 600; text-transform: uppercase;
    color: var(--orange-text); text-decoration: none; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 7px; min-height: 44px;
}
.mehr-link:hover { color: var(--schwarz); }
.mehr-link::after { content: '»'; transition: transform .22s ease; }
.mehr-link:hover::after { transform: translateX(5px); }

/* Karussell — der Aufmacher der Startseite

   Ohne JavaScript bleibt es ein waagerecht scrollbarer Streifen mit Einrasten;
   Pfeile, Punkte und der automatische Wechsel kommen erst per Skript dazu. */

/* padding: 0 — sonst greift der Innenabstand aller <section> und legt einen
   farbigen Streifen über und unter das Motiv. */
.karussell { position: relative; padding: 0; background: var(--orange-tief); overflow: hidden; }

.karussell__spur {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.karussell__spur::-webkit-scrollbar { display: none; }
.karussell__spur:focus-visible { outline-offset: -4px; }

.folie {
    position: relative;
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-height: clamp(430px, 60vh, 660px);
    display: flex; align-items: flex-end;
    padding: clamp(48px, 7vw, 92px) 0 clamp(74px, 7vw, 104px);
}

.folie__grund { position: absolute; inset: 0; z-index: 0; background: var(--orange-tief); }
.folie__grund img { width: 100%; height: 100%; object-fit: cover; }

/* Abdunklung: links kräftig für den Text, nach rechts gibt sie das Motiv frei */
.folie__grund::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, rgba(20,10,0,.90) 0%, rgba(20,10,0,.70) 48%, rgba(20,10,0,.40) 100%),
        linear-gradient(180deg, rgba(15,8,0,.25) 0%, rgba(15,8,0,.72) 100%);
}

.folie .bahn { position: relative; z-index: 2; width: 100%; }
.folie__inhalt { color: #fff; max-width: 46rem; }

.folie__titel {
    font-size: clamp(27px, 3.6vw, 46px);
    line-height: 1.1; margin: 0 0 14px;
    text-shadow: 0 4px 30px rgba(0,0,0,.45);
}
.folie__titel a { color: #fff; text-decoration: none; }
.folie__titel a:hover { color: var(--orange-hell); }

.folie__anriss {
    font-size: clamp(16px, 1.6vw, 19.5px); color: #f2e4d4;
    max-width: 54ch; margin: 0 0 24px;
}

.folie__meta { color: #d8cfc4; font-size: 13px; margin: 16px 0 0; }

/* Bedienung */

.karussell__pfeil {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    display: none; align-items: center; justify-content: center;
    width: 52px; height: 52px; padding: 0;
    background: rgba(20,10,0,.55); border: 2px solid rgba(255,255,255,.55);
    border-radius: 50%; cursor: pointer;
    color: #fff; font-family: var(--schrift-titel); font-size: 34px; line-height: 1;
    transition: background .22s ease, border-color .22s ease;
}
.hat-js .karussell__pfeil { display: flex; }
.karussell__pfeil:hover { background: var(--orange); color: var(--schwarz); border-color: var(--orange); }
.karussell__pfeil--zurueck { left: 16px; }
.karussell__pfeil--vor { right: 16px; }
.karussell__pfeil > span[aria-hidden] { transform: translateY(-3px); }

.karussell__leiste {
    position: absolute; left: 0; right: 0; bottom: 8px; z-index: 3;
    display: none; align-items: center; justify-content: center; gap: 4px;
}
.hat-js .karussell__leiste { display: flex; }

.karussell__punkte { display: flex; align-items: center; }

.karussell__punkt {
    width: 30px; height: 44px; padding: 0;
    display: grid; place-items: center;
    background: none; border: 0; cursor: pointer;
}
.karussell__punkt::after {
    content: ''; width: 11px; height: 11px; border-radius: 50%;
    background: rgba(255,255,255,.5); box-shadow: 0 1px 3px rgba(0,0,0,.5);
    transition: background .22s ease, transform .22s ease;
}
.karussell__punkt:hover::after { background: #fff; }
.karussell__punkt[aria-selected="true"]::after { background: var(--orange); transform: scale(1.4); }

/* Anhalten ist Pflicht, sobald etwas von allein weiterläuft (WCAG 2.2.2) */
.karussell__halt {
    width: 44px; height: 44px; padding: 0;
    display: grid; place-items: center;
    background: none; border: 0; cursor: pointer;
    color: rgba(255,255,255,.75); font-size: 12px; line-height: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.karussell__halt:hover { color: #fff; }

.marken-reihe { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }

.marke-pill {
    font-family: var(--schrift-titel);
    background: var(--orange); color: var(--schwarz);
    font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    padding: 3px 12px; border-radius: 3px;
}
.marke-pill--blau { background: var(--blau); color: #fff; }
.marke-pill--hell { background: rgba(255,255,255,.16); color: #fff; }


/* Schaltflaechen */

.knopf {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    min-height: 48px; padding: 12px 24px;
    background: var(--orange); color: var(--schwarz);
    border: 0; border-radius: var(--radius);
    font-family: var(--schrift-titel);
    font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
    text-decoration: none; cursor: pointer;
    transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.knopf:hover {
    background: var(--orange-hell); color: var(--schwarz);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(195,109,0,.32);
}

.knopf--leer { background: transparent; color: var(--schwarz); border: 2px solid var(--linie); }
.knopf--leer:hover { background: var(--flaeche); color: var(--schwarz); border-color: var(--orange); }

.knopf--hell { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.5); }
.knopf--hell:hover { background: #fff; color: var(--schwarz); border-color: #fff; }

/* Startseite: Hauptspalte und Randspalte

   Auf dem Rechner zwei Spalten: links die zehn Beiträge, rechts die Randkästen.
   Auf dem Handy lösen sich beide Container per display:contents auf — dann
   liegen Beiträge und Randkästen im selben Raster und lassen sich per order
   verzahnen (siehe Mobil-Abschnitt). Kein doppeltes Markup, kein Skript. */

.gespann { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(28px, 3vw, 46px); align-items: start; }

.strom { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-content: start; }
.strom > .abschnitt-kopf { grid-column: 1 / -1; margin-bottom: 0; }
.strom > .nichts { grid-column: 1 / -1; }

.randspalte { position: sticky; top: 96px; display: grid; gap: 26px; align-content: start; }

.randkasten {
    background: var(--papier); border: 1px solid var(--linie);
    border-radius: var(--radius); padding: 22px 20px;
}
.randkasten h2 { font-size: 21px; margin: 0 0 16px; padding-bottom: 9px; position: relative; }
.randkasten__text { color: var(--grau); font-size: 15px; margin: 0 0 4px; }
.randkasten h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 52px; height: 3px; background: var(--orange); }

/* Kacheln — weiss mit Bild und Titel darunter */

.raster { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.raster--drei { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* Rahmen und Hintergrund liegen auf der Kachel, nicht auf dem Link — sonst
   stünde der Bildnachweis ausserhalb des weissen Feldes und jede Kachel haette
   einen losen Anhang. */
.kachel {
    height: 100%; display: flex; flex-direction: column;
    background: var(--papier);
    border: 1px solid var(--linie);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}

.kachel:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 8px 18px rgba(20,21,25,.10), 0 22px 48px rgba(20,21,25,.12);
}

.kachel__link {
    display: flex; flex-direction: column; flex: 1;
    text-decoration: none; color: var(--schwarz);
}

.kachel__bild { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--flaeche); }

.kachel__bild img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.7,.3,1);
}

.kachel:hover .kachel__bild img { transform: scale(1.06); }

/* Der Schleier zieht beim Ueberfahren dunkler auf */
.kachel__schleier { transition: opacity .35s ease, height .35s ease; }
.kachel:hover .kachel__schleier { height: 58%; opacity: .85; }

/* Dunkler Fuss am Bild — gibt den Kacheln Tiefe, ohne den Titel zu wiederholen */
.kachel__schleier {
    position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
    background: linear-gradient(to top, rgba(20,21,25,.55) 0%, transparent 100%);
    pointer-events: none;
}

.kachel__rubrik {
    position: absolute; left: 12px; top: 12px;
    background: var(--blau); color: #fff;
    padding: 3px 11px; border-radius: 3px;
    font-family: var(--schrift-titel);
    font-size: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}

.kachel__text { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }

.kachel__dach {
    font-family: var(--schrift-titel);
    font-size: 15px; letter-spacing: .06em; text-transform: uppercase;
    color: var(--orange-text); font-weight: 700; margin: 0 0 6px;
}

/* Titel und Anriss auf feste Zeilenzahl begrenzen, damit alle Kacheln
   exakt gleich hoch werden — unabhaengig von der Textlaenge. */
.kachel__titel {
    font-size: clamp(18px, 1.45vw, 21px); margin: 0 0 9px; color: var(--schwarz);
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
    overflow: hidden; min-height: 3.2em;
}
.kachel:hover .kachel__titel { color: var(--orange-text); }

.kachel__anriss {
    color: var(--grau); font-size: 15px; margin: 0 0 16px;
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
    overflow: hidden; min-height: 4.5em;
}

.kachel__mehr {
    font-family: var(--schrift-titel);
    font-size: 17px; font-weight: 700; text-transform: uppercase;
    color: var(--orange-text); margin: auto 0 8px;
}
.kachel__mehr::after { content: ' »'; }

.kachel__meta { color: var(--grau); font-size: 13px; margin: 0; display: flex; gap: 14px; flex-wrap: wrap; }
.kachel__credit { color: var(--grau); font-size: 11.5px; margin: 0; padding: 0 20px 14px; opacity: .85; }

/* Bewertung */

.sterne { display: inline-flex; gap: 2px; margin-bottom: 9px; font-size: 16px; }

/* Platzhalter, damit Kacheln ohne Bewertung genauso hoch bleiben */
.sterne-leer { display: block; height: 16px; margin-bottom: 9px; }
.stern { color: #d7d7dc; }
.stern.ist-voll { color: var(--orange); }
.stern.ist-halb {
    background: linear-gradient(90deg, var(--orange) 50%, #d7d7dc 50%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Artikelseite */

.artikel__kopfbild { aspect-ratio: 16 / 9; background: var(--flaeche); border-radius: var(--radius); overflow: hidden; }
.artikel__kopfbild img { width: 100%; height: 100%; object-fit: cover; }
.artikel__bildnachweis { font-size: 12.5px; color: var(--grau); padding: 8px 2px 0; }
.artikel__innen { padding: 28px 0 0; }

.artikel__dach {
    font-family: var(--schrift-titel);
    font-size: 17px; letter-spacing: .06em; text-transform: uppercase;
    color: var(--orange-text); font-weight: 700; margin: 0 0 10px;
}

.artikel h1 { font-size: clamp(27px, 3.4vw, 41px); }

.artikel__meta {
    display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
    color: var(--grau); font-size: 14.5px;
    padding-bottom: 18px; margin-bottom: 26px;
    border-bottom: 3px solid var(--orange);
}
.artikel__meta a { display: inline-flex; align-items: center; min-height: 44px; color: var(--orange-text); }

.artikel__lead { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.55; font-weight: 500; margin: 0 0 26px; }

.artikel__text { font-size: 18px; line-height: 1.78; max-width: 68ch; }
.artikel__text p { margin: 0 0 22px; }
.artikel__text h2 { font-size: clamp(24px, 2.8vw, 31px); margin: 36px 0 12px; }
.artikel__text h3 { font-size: clamp(20px, 2.2vw, 25px); margin: 30px 0 10px; }
.artikel__text a { color: var(--orange-text); }
.artikel__text ul, .artikel__text ol { margin: 0 0 22px; padding-left: 24px; }
.artikel__text li { margin-bottom: 8px; }

.artikel__text blockquote {
    margin: 30px 0; padding: 4px 0 4px 22px;
    border-left: 5px solid var(--orange);
    font-family: var(--schrift-titel);
    font-size: clamp(21px, 2.4vw, 27px); line-height: 1.3;
}

.figure { margin: 28px 0; }
.figure img { border-radius: var(--radius); width: 100%; }
.figure__meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 7px; font-size: 13px; color: var(--grau); }

.schlagworte { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.schlagworte a {
    background: var(--flaeche); color: var(--schwarz); text-decoration: none;
    padding: 7px 14px; border-radius: 3px; font-size: 13.5px; font-weight: 500;
}
.schlagworte a:hover { background: var(--orange); color: var(--schwarz); }

/* Review-Steckbrief */

.steckbrief {
    background: var(--flaeche); border-left: 5px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px; margin: 0 0 26px;
    display: grid; gap: 14px 24px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.steckbrief dt {
    font-family: var(--schrift-titel);
    font-size: 15px; letter-spacing: .05em; text-transform: uppercase;
    color: var(--orange-text); font-weight: 700;
}
.steckbrief dd { margin: 2px 0 0; font-weight: 500; }

/* Charts */

.charts-liste { list-style: none; margin: 0; padding: 0; max-width: 940px; }

.chartplatz {
    display: grid; grid-template-columns: 64px 1fr auto;
    gap: 20px; align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--linie);
    transition: background .22s ease, transform .22s ease;
}

.chartplatz:hover { background: var(--flaeche); transform: translateX(6px); }
.chartplatz--podest { background: var(--flaeche); }
.chartplatz--podest .chartplatz__nr { color: var(--orange); }

.chartplatz__nr {
    font-family: var(--schrift-titel);
    font-size: clamp(30px, 3.4vw, 46px); font-weight: 700;
    color: var(--grau); text-align: center; line-height: 1;
    font-variant-numeric: tabular-nums;
}

.chartplatz__titel { font-family: var(--schrift-titel); font-size: clamp(18px, 1.8vw, 23px); margin: 0 0 2px; }
.chartplatz__kuenstler { color: var(--grau); font-size: 15px; margin: 0; }
.chartplatz__label { color: var(--grau); font-size: 12.5px; margin: 3px 0 0; opacity: .85; }

.bewegung { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; white-space: nowrap; }
.bewegung--up   { color: #1a7a4a; }
.bewegung--down { color: #b3261e; }
.bewegung--hold { color: var(--grau); }
.bewegung--new  { background: var(--orange); color: var(--schwarz); padding: 3px 10px; border-radius: 3px; font-size: 12.5px; }

.charts-hinweis {
    margin-top: 20px; padding: 13px 18px; max-width: 940px;
    background: var(--flaeche); border-left: 4px solid var(--blau);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--grau); font-size: 14.5px;
}

/* kompakte Chartliste in der Randspalte */
.rand-charts { list-style: none; margin: 0; padding: 0; }
.rand-charts li { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--linie); }
.rand-charts li:last-child { border-bottom: 0; }
.rand-charts__nr { font-family: var(--schrift-titel); font-size: 24px; font-weight: 700; color: var(--orange); text-align: center; }
.rand-charts__titel { font-family: var(--schrift-titel); font-size: 17px; margin: 0; line-height: 1.15; }
.rand-charts__wer { color: var(--grau); font-size: 13px; margin: 0; }

/* Termine */

.monat { margin-bottom: 34px; max-width: 940px; }
.monat__name { font-size: clamp(21px, 2.6vw, 28px); padding-bottom: 9px; margin-bottom: 6px; border-bottom: 3px solid var(--orange); }

.termin {
    display: grid; grid-template-columns: 84px 1fr auto;
    gap: 20px; align-items: center;
    padding: 15px 6px;
    border-bottom: 1px solid var(--linie);
    max-width: 940px;
}

.termin__datum { font-family: var(--schrift-titel); font-size: 24px; font-weight: 700; color: var(--orange-text); font-variant-numeric: tabular-nums; line-height: 1.1; }
.termin__tag { display: block; font-family: var(--schrift-text); font-size: 12px; color: var(--grau); font-weight: 400; }
.termin__titel { font-family: var(--schrift-titel); font-size: clamp(18px, 1.8vw, 22px); margin: 0 0 2px; }
.termin__titel a { color: var(--schwarz); text-decoration: none; }
.termin__titel a:hover { color: var(--orange-text); }
.termin__wer { color: var(--grau); font-size: 15px; margin: 0; }
.termin__ort { color: var(--grau); font-size: 13.5px; margin: 3px 0 0; opacity: .9; }

.art-marke {
    font-family: var(--schrift-titel);
    font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    padding: 4px 11px; border-radius: 3px; white-space: nowrap;
}
.art-marke--release { background: var(--orange); color: var(--schwarz); }
.art-marke--event   { background: var(--blau); color: #fff; }
.art-marke--tv      { background: var(--schwarz); color: #fff; }

/* Randspalten-Termine */
.rand-termine { list-style: none; margin: 0; padding: 0; }
.rand-termine li { padding: 10px 0; border-bottom: 1px solid var(--linie); }
.rand-termine li:last-child { border-bottom: 0; }
.rand-termine__datum { font-family: var(--schrift-titel); font-size: 17px; font-weight: 700; color: var(--orange-text); text-transform: uppercase; }
.rand-termine__titel { font-family: var(--schrift-titel); font-size: 17px; margin: 2px 0 0; line-height: 1.15; }
.rand-termine__wer { color: var(--grau); font-size: 13px; margin: 0; }

/* Kopf einer Unterseite */

.seiten-kopf { margin-bottom: 28px; }
.seiten-kopf h1 { font-size: clamp(26px, 3.2vw, 38px); margin: 0 0 12px; padding-bottom: 12px; position: relative; }
.seiten-kopf h1::after { content: ''; position: absolute; left: 0; bottom: 0; width: 84px; height: 4px; background: var(--orange); }
.seiten-kopf p { color: var(--grau); max-width: 58ch; margin: 0; }

.filterreihe { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.blaettern { display: flex; gap: 12px; justify-content: center; margin-top: 42px; flex-wrap: wrap; align-items: center; }
.blaettern span { color: var(--grau); font-size: 15px; }

/* Formulare */

.formular { display: grid; gap: 18px; max-width: 620px; }
.formular label { display: block; font-weight: 600; margin-bottom: 6px; }

.formular input, .formular textarea, .suchleiste input {
    width: 100%; padding: 13px 15px;
    background: var(--papier); border: 2px solid var(--linie); border-radius: var(--radius);
    color: var(--schwarz); font: inherit; min-height: 48px;
}

.formular textarea { min-height: 160px; resize: vertical; }
.formular input:focus, .formular textarea:focus, .suchleiste input:focus { border-color: var(--orange); outline: none; }
.honig { position: absolute; left: -9999px; }

.hinweis { padding: 14px 18px; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 22px; background: var(--flaeche); border-left: 4px solid var(--orange); }
.hinweis--fehler { border-left-color: #b3261e; background: #fdeeed; }

/* Newsletter */

.newsletter { display: grid; gap: 16px; }

.newsletter__titel {
    font-family: var(--schrift-titel); font-size: clamp(22px, 2.4vw, 30px);
    margin: 0 0 4px;
}
.newsletter__sub { color: var(--grau); margin: 0; font-size: 15.5px; }

.newsletter__eingabe { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__eingabe input {
    flex: 1; min-width: 220px; padding: 13px 15px;
    border: 2px solid var(--linie); border-radius: var(--radius);
    font: inherit; min-height: 50px; background: var(--papier); color: var(--schwarz);
}
.newsletter__eingabe input:focus { border-color: var(--orange); outline: none; }
.newsletter__recht { color: var(--grau); font-size: 13.5px; margin: 0; max-width: 60ch; }

/* Breites Band vor dem Fuss */
.newsletter-band { background: var(--papier); border-top: 1px solid var(--linie); padding: clamp(34px, 4vw, 54px) 0; }
.newsletter--band { max-width: 780px; }

/* Kompakte Fassung in der Randspalte */
.newsletter--rand .newsletter__titel { font-size: 21px; }
.newsletter--rand .newsletter__sub { font-size: 14px; }
.newsletter--rand .newsletter__eingabe { flex-direction: column; }
.newsletter--rand .newsletter__eingabe input { min-width: 0; }
.newsletter--rand .knopf { width: 100%; }

/* Abstimmung */

.abstimmung__frage {
    font-family: var(--schrift-titel); font-size: clamp(20px, 2.2vw, 26px);
    margin: 0 0 6px; line-height: 1.15;
}
.abstimmung__intro { color: var(--grau); margin: 0 0 18px; }

.abstimmung__wahl { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 8px; }

.abstimmung__wahl label {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 15px; min-height: 56px;
    border: 2px solid var(--linie); border-radius: var(--radius);
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease;
}
.abstimmung__wahl label:hover { border-color: var(--orange); background: var(--flaeche); }
.abstimmung__wahl input { width: 20px; height: 20px; accent-color: var(--orange); flex-shrink: 0; }
.abstimmung__wahl strong { display: block; font-family: var(--schrift-titel); font-size: 19px; line-height: 1.15; }
.abstimmung__wahl span span { color: var(--grau); font-size: 14px; }

.abstimmung__ergebnis { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 14px; }
.abstimmung__zeile { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 5px; }
.abstimmung__wer strong { display: block; font-family: var(--schrift-titel); font-size: 18px; line-height: 1.15; }
.abstimmung__wer span { color: var(--grau); font-size: 13.5px; }
.abstimmung__prozent { font-family: var(--schrift-titel); font-size: 20px; font-weight: 700; color: var(--orange-text); font-variant-numeric: tabular-nums; }

.abstimmung__balken { height: 9px; background: var(--linie); border-radius: 999px; overflow: hidden; }
.abstimmung__balken span {
    display: block; height: 100%; background: var(--orange); border-radius: 999px;
    transition: width .8s cubic-bezier(.2,.7,.3,1);
}

.abstimmung__fuss { color: var(--grau); font-size: 13.5px; margin: 0; }

/* Kompakt in der Randspalte */
.abstimmung--rand .abstimmung__frage { font-size: 19px; }
.abstimmung--rand .abstimmung__wahl label { padding: 9px 12px; min-height: 48px; }
.abstimmung--rand .abstimmung__wahl strong { font-size: 16px; }
.abstimmung--rand .abstimmung__wer strong { font-size: 15.5px; }
.abstimmung--rand .abstimmung__prozent { font-size: 17px; }
.abstimmung--rand .knopf { width: 100%; }

/* Freie Seiten */

.seite__stand { color: var(--grau); font-size: 13.5px; margin: 36px 0 0; padding-top: 14px; border-top: 1px solid var(--linie); }

/* Ein Platzhalter ohne hinterlegte Angabe soll auffallen, nicht verschwinden */
mark.fehlt { background: #ffe9e7; color: #a3231c; padding: 1px 7px; border-radius: 3px; font-weight: 600; }

.klartext { margin-top: 40px; }
.klartext h2 { font-size: clamp(20px, 2.2vw, 25px); margin: 28px 0 10px; }
.klartext ul { margin: 0; padding-left: 22px; color: var(--grau); }
.klartext li { margin-bottom: 7px; }

.suchleiste { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.suchleiste input { flex: 1; min-width: 240px; }

/* Fuss */

.fuss { background: var(--schwarz); color: #fff; margin-top: clamp(36px, 4vw, 64px); padding: 44px 0 40px; }
.fuss__innen { max-width: var(--breite); margin: 0 auto; padding: 0 24px; }

.fuss__spalten {
    display: grid; gap: 26px 36px;
    grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(120px, 1fr));
    align-items: start;
}

/* Orange Logovariante — die graue Fassung wäre auf dem schwarzen Fuß nicht lesbar */
.fuss__marke { width: auto; height: 58px; margin: 0 0 14px; }

.fuss__text { color: #b9bcc4; max-width: 40ch; margin: 0; font-size: 15px; }

.fuss__titel {
    font-family: var(--schrift-titel);
    font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
    margin: 0 0 8px; padding-bottom: 7px; color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.fuss__titel--zweit { margin-top: 18px; }

.fuss__liste { list-style: none; margin: 0; padding: 0; }

.fuss__liste a {
    color: #b9bcc4; text-decoration: none; font-size: 14.5px; line-height: 1.25;
    min-height: 32px; display: flex; align-items: center; gap: 9px;
    padding: 3px 0;
}
.fuss__liste a:hover { color: var(--orange-hell); }
.fuss__liste a:hover .fuss__icon { color: var(--orange); }

.fuss__icon { color: #6f7681; flex-shrink: 0; transition: color .2s ease; }
.fuss__unter a { padding-left: 13px; font-size: 14px; }

.fuss__klein {
    color: #8b8f99; font-size: 13px; margin: 26px 0 0;
    padding-top: 15px; border-top: 1px solid rgba(255,255,255,.14);
}

/* Leere Zustaende */

.nichts { text-align: center; padding: 60px 24px; color: var(--grau); }
.nichts h2 { color: var(--schwarz); }

/* Bewegung
   Alles läuft über transform und opacity, damit der Browser es auf dem Compositor
   rechnet und nichts ruckelt. Die Klasse .hat-js setzt das Skript im Kopf — ohne
   JavaScript bleibt jeder Inhalt sofort sichtbar. */

.hat-js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.3,1);
}

.hat-js [data-reveal].ist-sichtbar { opacity: 1; transform: none; }

/* Gestaffelt: die Kacheln einer Reihe kommen nacheinander herein */
.hat-js [data-reveal]:nth-child(2) { transition-delay: .09s; }
.hat-js [data-reveal]:nth-child(3) { transition-delay: .18s; }
.hat-js [data-reveal]:nth-child(4) { transition-delay: .27s; }
.hat-js [data-reveal]:nth-child(5) { transition-delay: .36s; }
.hat-js [data-reveal]:nth-child(6) { transition-delay: .45s; }

/* Karussell: der Text der sichtbaren Folie steigt sanft auf */
.hat-js .folie__inhalt > * { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.hat-js .folie.ist-aktiv .folie__inhalt > * { opacity: 1; transform: none; }
.hat-js .folie__inhalt > *:nth-child(2) { transition-delay: .1s; }
.hat-js .folie__inhalt > *:nth-child(3) { transition-delay: .2s; }
.hat-js .folie__inhalt > *:nth-child(4) { transition-delay: .3s; }

/* Der orange Strich unter den Abschnittsüberschriften wächst auf */
.hat-js .abschnitt-kopf h2::after, .hat-js .abschnitt-titel::after { width: 0; transition: width .6s cubic-bezier(.2,.7,.3,1); }
.hat-js .abschnitt-kopf h2.ist-sichtbar::after, .hat-js .abschnitt-titel.ist-sichtbar::after { width: 68px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important; animation-iteration-count: 1 !important;
        transition-duration: .001ms !important; transition-delay: 0s !important;
    }
    .hat-js [data-reveal],
    .hat-js .folie__inhalt > * { opacity: 1; transform: none; }
    .hat-js .abschnitt-kopf h2::after, .hat-js .abschnitt-titel::after { width: 68px; }
    .karussell__spur { scroll-behavior: auto; }
}

/* Mobil */

@media (max-width: 1080px) {
    /* Tablet: die Randkästen rutschen unter die Beiträge und stehen nebeneinander */
    .gespann { grid-template-columns: 1fr; }
    .randspalte { position: static; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 860px) {
    .kopf__innen { padding: 10px 18px; gap: 14px; flex-wrap: wrap; }

    .burger {
        display: grid; gap: 5px; margin-left: auto;
        background: none; border: 0; cursor: pointer;
        min-width: 44px; min-height: 44px; align-content: center; justify-items: center;
    }
    .burger span { display: block; width: 24px; height: 2px; background: var(--schwarz); }
    .burger span.visually-hidden { width: 1px; height: 1px; background: none; }
    .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hauptnav { display: none; width: 100%; flex-direction: column; margin-left: 0; padding-bottom: 8px; }
    .hauptnav.ist-offen { display: flex; }
    .hauptnav a { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--linie); }

    /* Klappmenüs auf dem Handy: untereinander statt schwebend, und nur über den
       Schalter — Überfahren gibt es auf Touchgeräten nicht. */
    .navpunkt { width: 100%; flex-wrap: wrap; }
    .navpunkt > a { flex: 1; }
    .navpunkt__schalter { min-width: 44px; margin: 0; font-size: 15px; }

    .untermenue {
        position: static; width: 100%; min-width: 0;
        border: 0; border-radius: 0; box-shadow: none;
        padding: 0 0 6px; background: none;
    }
    .navpunkt:hover > .untermenue { display: none; }
    .navpunkt.ist-offen > .untermenue { display: block; }
    .untermenue a { padding-left: 22px; font-size: 17px; }

    .folie { min-height: 400px; padding-bottom: 84px; }
    .folie__inhalt { max-width: none; }

    /* Auf dem Handy wird gewischt — Pfeile über dem Bild wären nur im Weg */
    .karussell__pfeil { display: none !important; }

    .raster, .raster--drei { grid-template-columns: 1fr; }

    /* Einspaltig muss nichts mehr auf gleiche Höhe gezwungen werden — ohne die
       Platzhalter wird die Liste spürbar kürzer. */
    .kachel__titel, .kachel__anriss { min-height: 0; }
    .sterne-leer { display: none; }

    /* Flachere Bilder: zehn Beiträge im 4:3-Format ergeben sonst eine
       endlose Rolle, durch die niemand bis zum Fuß wischt. */
    .kachel__bild { aspect-ratio: 16 / 9; }

    /* Eine Textebene weniger pro Kachel — die ganze Kachel ist ohnehin der Link,
       und untereinander gestapelt wirkten sechs Schriftgrade unruhig. */
    .kachel__mehr { display: none; }
    .kachel__anriss { margin-bottom: 12px; }

    /* Randkästen zwischen die Beiträge schieben.

       display:contents löst .strom und .randspalte auf, dadurch liegen Beiträge
       und Randkästen als Geschwister im selben Raster und lassen sich per order
       mischen: Abstimmung nach dem 3., Charts nach dem 6., Termine nach dem 9.
       Beitrag. Fehlt ein Kasten, rückt der nächste nach. */
    .gespann { gap: 26px; }
    .strom, .randspalte { display: contents; }

    .strom > .abschnitt-kopf { order: 0; }
    .strom > .nichts { order: 1; }
    .strom > article:nth-of-type(1)  { order: 1; }
    .strom > article:nth-of-type(2)  { order: 2; }
    .strom > article:nth-of-type(3)  { order: 3; }
    .strom > article:nth-of-type(4)  { order: 4; }
    .strom > article:nth-of-type(5)  { order: 5; }
    .strom > article:nth-of-type(6)  { order: 6; }
    .strom > article:nth-of-type(7)  { order: 7; }
    .strom > article:nth-of-type(8)  { order: 8; }
    .strom > article:nth-of-type(9)  { order: 9; }
    .strom > article:nth-of-type(10) { order: 10; }

    /* Feste Klassen statt Positionszählung: fehlt ein Kasten, bleibt die
       Reihenfolge der übrigen trotzdem richtig. Die Kurzvorstellung steht auf
       dem Handy hinten — dort führt der Inhalt, nicht die Eigenwerbung. */
    .randkasten--abstimmung { order: 3; }
    .randkasten--charts     { order: 6; }
    .randkasten--termine    { order: 9; }
    .randkasten--ueber      { order: 12; }

    .chartplatz { grid-template-columns: 48px 1fr; gap: 14px; }
    .chartplatz .bewegung { grid-column: 2; justify-self: start; }
    .termin { grid-template-columns: 66px 1fr; gap: 14px; }
    .termin .art-marke { grid-column: 2; justify-self: start; }

    .artikel__text { font-size: 17px; }

    /* Fuß auf dem Handy: die Marke oben über die volle Breite, darunter die
       Listen zu zweit nebeneinander — sonst wird der Fuß länger als der Inhalt.
       Die Berührflächen bleiben trotzdem bei 44 px. */
    .fuss { padding: 30px 0 32px; }
    .fuss__spalten { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
    .fuss__spalten > :first-child { grid-column: 1 / -1; }
    .fuss__marke { height: 46px; margin-bottom: 10px; }
    .fuss__text { font-size: 14px; max-width: none; }
    .fuss__liste a { min-height: 44px; padding: 4px 0; }
    .fuss__klein { margin-top: 20px; }

    /* Unterrubriken raus: sie hängen im Menü ohnehin unter ihrer Hauptrubrik
       und machen den Fuß auf dem Handy nur unnötig lang. */
    .fuss__unter { display: none; }
}

@media (max-width: 420px) {
    .fuss__titel { font-size: 16px; }
    .fuss__liste a { font-size: 14px; gap: 7px; }
}
