/* folge.css — gemeinsames Stylesheet der Folgenseiten (angelegt 18.08.2026)
   Greift Farben und Schriften der Startseite auf. Bewusst EINE Datei statt 48-mal inline:
   bei 48 Seiten spart das Ladezeit und macht eine Designänderung zu einem einzigen Edit. */

:root {
  --magenta: #9a12c0;
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --line: #E7E7E2;
  --text: #0A0A0A;
  --muted: #5b5b55;
  --dark: #1c1d24;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(10,10,10,.04), 0 8px 24px rgba(10,10,10,.05);
  --maxw: 820px;
}

@font-face { font-family:'Archivo'; font-style:normal; font-weight:700; font-display:swap; src:url('/assets/fonts/archivo-700-latin.woff2') format('woff2'); }
@font-face { font-family:'Archivo'; font-style:normal; font-weight:800; font-display:swap; src:url('/assets/fonts/archivo-800-latin.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('/assets/fonts/inter-400-latin.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url('/assets/fonts/inter-500-latin.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('/assets/fonts/inter-600-latin.woff2') format('woff2'); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

header.top { background: var(--dark); color: #fff; padding: 20px 0; }
header.top .wrap { display: flex; align-items: center; gap: 12px; }
header.top a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 12px; }
header.top img { width: 34px; height: 34px; border-radius: 8px; }
header.top .wm { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: .02em; }
header.top nav { margin-left: auto; display: flex; gap: 18px; font-size: 14px; }
header.top nav a { opacity: .85; }
header.top nav a:hover { opacity: 1; }

main { padding: 40px 0 64px; }

.kruemel { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.kruemel a { color: var(--muted); }

.folge-kopf { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 28px; flex-wrap: wrap; }
.folge-kopf img { width: 180px; height: 180px; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.folge-kopf .meta { flex: 1; min-width: 260px; }
.nummer {
  display: inline-block; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--magenta);
  border: 1px solid var(--magenta); border-radius: 999px; padding: 3px 11px; margin-bottom: 12px;
}
h1 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.1rem); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 12px; }
.fakten { font-size: 14px; color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap; }

.hoeren { margin: 28px 0; padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.hoeren h2 { font-family: 'Archivo', sans-serif; font-size: 1rem; margin-bottom: 12px; }
.hoeren .knoepfe { display: flex; gap: 10px; flex-wrap: wrap; }
.hoeren a {
  display: inline-block; padding: 9px 16px; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 14px; background: var(--magenta); color: #fff;
}
.hoeren a.sekundaer { background: transparent; color: var(--text); border: 1px solid var(--line); }
.hoeren .hinweis { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

section.block { margin: 34px 0; }
section.block h2 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.25rem; margin-bottom: 12px; }
section.block p { margin-bottom: 12px; }
section.block a { color: var(--magenta); }

.transkript { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.transkript p { font-size: 15px; color: #26261f; }
.transkript .zeit { color: var(--muted); font-variant-numeric: tabular-nums; font-size: 13px; margin-right: 8px; }
.transkript-hinweis { font-size: 12.5px; color: var(--muted); margin-top: 14px; font-style: italic; }

.folgen-liste { display: grid; gap: 14px; }
.folgen-liste a.karte {
  display: flex; gap: 16px; align-items: center; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px;
}
.folgen-liste a.karte:hover { box-shadow: var(--shadow); }
.folgen-liste img { width: 74px; height: 74px; border-radius: 11px; object-fit: cover; flex-shrink: 0; }
.folgen-liste .t { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.35; margin-bottom: 4px; }
.folgen-liste .d { font-size: 13px; color: var(--muted); }

.nachbarn { display: flex; justify-content: space-between; gap: 14px; margin-top: 40px; font-size: 14px; }
.nachbarn a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--magenta); padding-bottom: 2px; }

footer { border-top: 1px solid var(--line); padding: 24px 0; color: var(--muted); font-size: 13px; }
footer a { color: var(--muted); }

@media (max-width: 560px) {
  .folge-kopf img { width: 120px; height: 120px; }
  header.top nav { display: none; }
}
