/* =========================================================
   KLANG TV — Stylesheet
   Grundfarben: Schwarz / Anthrazit
   Akzentfarben: KLANG-TV-Violett / Magenta
   ========================================================= */

:root {
  --black: #0a0a0b;
  --black-soft: #0f0f11;
  --anthracite: #17171a;
  --anthracite-light: #202024;
  --border: #2a2a2e;
  --white: #ffffff;
  --gray-text: #b4b4ba;
  --gray-text-dim: #86868c;

  --violet: #9b1fe0;
  --violet-bright: #b445ff;
  --violet-dim: #6d17a0;
  --magenta: #c724b1;

  --font: "Helvetica Neue", Arial, "Segoe UI", sans-serif;

  --container: 1600px;
  --container-gutter: 40px; /* je Seite — zusammen 80px, siehe .container */
  --header-h: 88px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Einheitliches Seitenraster: Breite/Zentrierung ausschließlich über
   width/max-width/margin — bewusst OHNE padding-left/right, damit ein
   späteres "padding: … 0" auf demselben Element (z. B. für vertikalen
   Abstand) die horizontale Ausrichtung nicht mehr versehentlich
   überschreiben kann. Wird von Header, Content-Sections und Footer
   gemeinsam genutzt, damit alle Bereiche exakt dieselben Außenkanten
   haben. */
.container,
.header-inner,
.hero-inner,
.now-strip-inner,
.about-inner,
.closing-inner {
  width: calc(100% - (var(--container-gutter) * 2));
  max-width: var(--container);
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-bright);
  margin-bottom: 14px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section-head h2 span { color: var(--violet-bright); }

.link-more {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  white-space: nowrap;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
  transition: color .2s ease, border-color .2s ease;
}
.link-more:hover { color: var(--violet-bright); border-color: var(--violet-bright); }

section { padding: 90px 0; }
section.alt { background: var(--black-soft); }

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(155,31,224,.6);
}
.btn-primary:hover { background: var(--violet-bright); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(155,31,224,.65); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--violet-bright); color: var(--violet-bright); }

.btn-live {
  background: var(--violet);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 13px;
}
.btn-live:hover { background: var(--violet-bright); }
.btn-live .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff; display: inline-block;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
  50% { opacity: .55; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8,8,9,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-box {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.main-nav a {
  position: relative;
  padding: 10px 11px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a.active { color: var(--white); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--violet-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--gray-text);
  transition: background .2s ease, color .2s ease;
}
.icon-btn:hover { background: var(--anthracite-light); color: var(--white); }
.icon-btn svg { width: 19px; height: 19px; }

.burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(6,6,7,0.97);
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-box { width: min(640px, 90vw); }
.search-box input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--violet);
  color: var(--white);
  font-size: 32px;
  font-weight: 300;
  padding: 12px 4px;
  outline: none;
}
.search-box input::placeholder { color: var(--gray-text-dim); }
.search-hint { margin-top: 14px; font-size: 13px; color: var(--gray-text-dim); }
.search-close {
  position: absolute; top: 28px; right: 32px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-text); font-size: 28px;
}
.search-close:hover { color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: radial-gradient(ellipse at 72% 30%, #2a1240 0%, #0a0a0b 60%);
}

.hero-inner { flex: 1; display: flex; align-items: center; }

.hero-stage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-stage-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 22%;
}
.hero-stage-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8,8,9,0.98) 0%, rgba(8,8,9,0.86) 32%, rgba(8,8,9,0.35) 60%, rgba(8,8,9,0.15) 100%),
    linear-gradient(0deg, rgba(8,8,9,0.95) 0%, rgba(8,8,9,0) 30%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 40px;
}

.hero-content { max-width: 640px; }

.hero-slogan-tag {
  display: inline-block;
  font-family: "Brush Script MT", cursive;
  font-size: clamp(28px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0 18px rgba(180, 69, 255, 0.55), 0 0 4px rgba(180, 69, 255, 0.4);
  transform: rotate(-3deg);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero h1 .line-2 { color: var(--violet-bright); }

.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gray-text);
  max-width: 520px;
}

.hero-cta { margin-top: 34px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* now-playing strip */
.now-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,10,11,0.6);
}
.now-strip-inner {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--gray-text);
}
.now-strip .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff3b3b;
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
.now-strip strong { color: var(--white); font-weight: 700; }
.now-strip .sep { color: var(--border); }

/* ---------- Programm / Heute im TV ---------- */
.programm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.programm-loading,
.programm-empty {
  grid-column: 1 / -1;
  padding: 40px 30px;
  text-align: center;
  color: var(--gray-text-dim);
  font-size: 15px;
  border: 1px dashed var(--border);
  border-radius: 6px;
}

.show-card {
  background: var(--anthracite);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.show-card:hover { transform: translateY(-4px); border-color: var(--violet-dim); }

.show-card .show-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(155deg, #241028 0%, #150a1c 55%, #0d0d10 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.show-card .show-thumb-icon { width: 34%; display: flex; transition: opacity .3s ease; }
.show-card .show-thumb-icon svg { width: 100%; opacity: .5; color: var(--violet-bright); }
.show-card .show-thumb.has-image .show-thumb-icon { opacity: 0; }

.show-card.is-live {
  border-color: var(--violet-bright);
  cursor: pointer;
  animation: cal-live-glow 2.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .show-card.is-live { animation: none; box-shadow: 0 0 0 1px var(--violet) inset; }
}
.show-card.is-live .show-thumb:not(.has-image) { background: linear-gradient(155deg, #3a1350 0%, #200a30 60%, #0d0d10 100%); }

.live-badge {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--violet);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 9px 5px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}
.live-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.6s infinite; }

.show-info { padding: 16px 18px 20px; }
.show-time { font-size: 13px; font-weight: 700; color: var(--violet-bright); letter-spacing: 0.03em; }
.show-title { margin-top: 6px; font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; }
.show-desc { margin-top: 6px; font-size: 13.5px; color: var(--gray-text-dim); }

/* ---------- News ---------- */
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
.news-col { display: flex; flex-direction: column; gap: 18px; }

.news-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
  min-height: 260px;
}
.news-card.big { min-height: 560px; }
.news-card.small { min-height: 271px; }

.news-card .media {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #2b1236, #160a1c 55%, #0c0c0e);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s ease;
}
.news-card .media svg { width: 22%; opacity: .35; color: var(--violet-bright); }
.news-card .media .news-media-icon { width: 22%; display: flex; transition: opacity .3s ease; }
.news-card .media .news-media-icon svg { width: 100%; opacity: .35; color: var(--violet-bright); }
.news-card .media.has-image .news-media-icon { opacity: 0; }
.news-card:hover .media { transform: scale(1.05); }

.news-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 70%);
}

.news-card .tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  background: var(--violet);
  color: #fff;
}
.news-card .tag.exclusive { background: var(--white); color: var(--black); }

.news-card .body {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  z-index: 2;
}
.news-card.big .body { left: 28px; right: 28px; bottom: 28px; }

.news-card h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
}
.news-card.big h3 { font-size: 30px; }
.news-card p { margin-top: 8px; font-size: 13.5px; color: var(--gray-text); max-width: 90%; }

.news-arrow {
  position: absolute;
  right: 18px; bottom: 18px;
  z-index: 3;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.news-card:hover .news-arrow { background: var(--violet); border-color: var(--violet); transform: translateX(2px); }
.news-arrow svg { width: 15px; height: 15px; }

/* ---------- Über uns ---------- */
.about-section {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.about-bg {
  position: absolute; inset: 0;
  background: #0a0a0d;
}
.about-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.05);
}
.about-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,8,9,0.95) 0%, rgba(8,8,9,0.75) 42%, rgba(8,8,9,0.35) 70%, rgba(8,8,9,0.15) 100%);
}

.about-inner {
  position: relative; z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}
.about-content { max-width: 620px; }
.about-inner h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
}
.about-inner h2 span { color: var(--violet-bright); }
.about-sub {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  opacity: .85;
}
.about-text {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-text);
}
.about-rule {
  margin-top: 30px;
  width: 70px; height: 3px;
  background: var(--violet-bright);
}
.about-signoff {
  margin-top: 26px;
  font-family: "Brush Script MT", cursive;
  font-size: 22px;
  color: var(--white);
  opacity: .8;
}
.about-cta-hint {
  margin-top: 30px;
  font-size: 14px;
  color: var(--gray-text);
}
.about-content .btn-ghost { margin-top: 12px; }

/* ---------- Mediathek ---------- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--anthracite);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(155deg, #2a1236, #160a1c 55%, #0c0c0e);
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.video-thumb svg.note { width: 20%; opacity: .3; color: var(--violet-bright); transition: opacity .3s ease; }
.video-thumb.has-image svg.note { opacity: 0; }
.video-thumb { transition: transform .4s ease; }
.video-card:hover .video-thumb { transform: scale(1.03); }

.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); margin: 0;
  z-index: 2;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.video-card:hover .play-btn { background: var(--violet); border-color: var(--violet); transform: translate(-50%, -50%) scale(1.08); }
.play-btn svg { width: 20px; height: 20px; margin-left: 3px; }

.video-duration {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(0,0,0,0.7);
  font-size: 12px; font-weight: 700;
  padding: 3px 7px; border-radius: 3px;
  z-index: 2;
}

.video-info { padding: 14px 16px 18px; }
.video-info .cat { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--violet-bright); }
.video-info h3 { margin-top: 5px; font-size: 16px; font-weight: 800; text-transform: uppercase; }
.video-info p { margin-top: 4px; font-size: 13px; color: var(--gray-text-dim); }

/* ---------- Abschlussbereich ---------- */
.closing {
  position: relative;
  padding: 130px 0 0;
  overflow: hidden;
  background: #000;
}
.closing-bg {
  position: absolute; inset: 0;
  background: #000;
}
.closing-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 25%;
}
.closing-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,7,0.55) 0%, rgba(6,6,7,0.9) 68%, #060607 100%);
}

.closing-inner {
  position: relative; z-index: 2;
  padding-bottom: 70px;
  text-align: center;
}
.closing h2 {
  font-size: clamp(36px, 7vw, 84px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
}
.closing h2 .accent { color: var(--violet-bright); }
.closing-tags {
  margin-top: 26px;
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray-text);
}
.closing-tags span:not(.dot) {}
.closing-tags .dot { color: var(--violet-bright); }

.closing-cta { margin-top: 40px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; z-index: 2;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-top {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand .logo-box { width: 68px; height: 68px; flex-shrink: 0; }
.footer-brand-text { display: flex; flex-direction: column; gap: 6px; }
.footer-brand-name {
  font-size: 17px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white);
}
.footer-brand-slogan { font-size: 14.5px; color: var(--gray-text); }
.footer-brand-project { font-size: 13px; color: var(--gray-text-dim); }
.footer-brand-project strong { color: var(--gray-text); font-weight: 700; }

/* Untere Footerzeile: Navigation links, Copyright rechts, gemeinsam in
   einer Zeile auf dem Desktop. Eine einzige Trennlinie (border-top) —
   keine weitere Linie darunter/darüber. */
.footer-bottom {
  /* Trennlinie kommt bereits von .footer-top (border-bottom) darüber —
     hier bewusst keine zweite Linie. */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding-top: 24px;
}

.footer-navigation {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(18px, 1.5vw, 32px);
  min-width: 0;
}
.footer-navigation a {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gray-text-dim);
  transition: color .2s ease;
}
.footer-navigation a:hover { color: var(--violet-bright); }
.footer-navigation a.legal { color: var(--gray-text); }

.footer-copyright {
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
  text-align: right;
  font-size: 12.5px;
  color: var(--gray-text-dim);
}

/* ---------- Modal-Basis (gemeinsam für alle Popups: Live, Kontakt, Video-Player) ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(4,4,5,0.92);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }

.modal-close {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-text); font-size: 22px;
}
.modal-close:hover { background: var(--anthracite-light); color: var(--white); }

/* ---------- KLANG TV Live-Player ---------- */
.live-modal-overlay { background: rgba(2,2,3,0.96); }

.live-modal-box {
  width: min(1100px, 96vw);
  background: #000;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transform: scale(.96);
  transition: transform .25s ease;
}
.live-modal-overlay.is-open .live-modal-box { transform: scale(1); }

.live-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: #000;
  border-bottom: 1px solid var(--border);
}
.live-modal-titles { display: flex; align-items: center; gap: 14px; }
.live-modal-titles h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
}
.live-badge-lg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--violet);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 11px 6px 8px;
  border-radius: 3px;
  flex-shrink: 0;
}
.live-badge-lg .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; display: inline-block; animation: pulse 1.6s infinite; }

.live-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.live-player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

/* Zwei-Klick-Lösung: Platzhalter vor Zustimmung zum externen Player */
.live-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(155,31,224,0.25) 0%, rgba(155,31,224,0) 60%),
    #0a0a0b;
}
.live-consent svg { width: 44px; color: var(--violet-bright); opacity: .9; }
.live-consent h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.live-consent p {
  max-width: 460px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--gray-text);
}
.live-consent p a { color: var(--violet-bright); text-decoration: underline; }
.live-consent .btn-primary { margin-top: 4px; }

.live-modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 22px;
  background: #000;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--gray-text-dim);
}
.live-modal-foot a {
  flex-shrink: 0;
  color: var(--violet-bright);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.live-modal-foot a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .live-modal-box { width: 100vw; border-radius: 0; }
  .live-modal-head { padding: 14px 16px; }
  .live-modal-titles h3 { font-size: 14px; }
  .live-modal-foot { padding: 12px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(6,6,7,0.98);
  z-index: 950;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  padding: 30px 32px 40px;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn-primary { margin-top: 28px; width: 100%; justify-content: center; }

/* ---------- Rechtliche Seiten (Impressum/Datenschutz/AGB) ---------- */
.page-hero {
  margin-top: var(--header-h);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}
.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 24px;
  transition: color .2s ease;
}
.legal-back-link:hover { color: var(--violet-bright); }
.page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.legal-updated { margin-top: 12px; font-size: 13px; color: var(--gray-text-dim); }

.page-content { padding: 56px 0 100px; max-width: 820px; margin: 0 auto; }
.page-content h2 {
  font-size: 20px; font-weight: 800; text-transform: uppercase;
  margin: 40px 0 14px; color: var(--violet-bright);
  padding-top: 4px;
}
.page-content h2:first-of-type { margin-top: 0; }
.page-content h3 { font-size: 16px; font-weight: 800; text-transform: uppercase; margin: 22px 0 8px; color: var(--white); }
.page-content p, .page-content li { color: var(--gray-text); font-size: 15.5px; line-height: 1.75; margin-bottom: 10px; }
.page-content ul { margin: 4px 0 16px 20px; }
.page-content li { list-style: disc; margin-bottom: 8px; }
.page-content strong { color: var(--white); }
.page-content a { color: var(--violet-bright); text-decoration: underline; }
.page-content .intro { font-size: 16px; color: var(--gray-text); margin-bottom: 8px; }

.legal-box {
  margin: 18px 0 28px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--violet-bright);
  background: rgba(255,255,255,0.03);
}
.legal-box p { margin-bottom: 3px; }
.legal-box p:last-child { margin-bottom: 0; }

.legal-note {
  margin: 18px 0;
  padding: 16px 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  font-size: 14px;
  color: var(--gray-text-dim);
}

/* ---------- Kontakt-Teaser (Startseite) ---------- */
.contact-teaser { padding: 80px 0; } /* ersetzt das generische section-Padding — kein doppeltes Padding mehr */

.contact-teaser-inner {
  display: grid;
  grid-template-columns: minmax(0, 720px) 200px;
  justify-content: center; /* "space-between" würde Text/Button an die äußeren Kanten drücken — siehe Hinweis */
  align-items: center;
  gap: 100px;
}
.contact-teaser-text { max-width: 680px; }
.contact-teaser-text h2 {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}
.contact-teaser-text p {
  margin-top: 18px;
  font-size: 16px;
  color: var(--gray-text);
  max-width: 460px;
}
.contact-teaser-direct {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}
.contact-teaser-direct a { color: var(--white); }
.contact-teaser-direct a:hover { color: var(--violet-bright); }
.contact-teaser-direct .sep { color: var(--gray-text-dim); font-weight: 400; }

.contact-open-btn {
  flex-shrink: 0;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 216px;
  height: 216px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet) 0%, var(--magenta) 100%);
  color: #fff;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 0 0 0 rgba(155,31,224,0);
}
.contact-open-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 55px -14px rgba(155,31,224,.65);
}
.contact-open-btn .line1 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .85;
}
.contact-open-btn .line2 {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Kontaktformular (Modal) ---------- */
.contact-modal-overlay {
  background: rgba(2,2,3,0.96);
  align-items: flex-start;
  overflow-y: auto;
  padding: 48px 20px;
}
.contact-modal-box {
  position: relative;
  width: min(1080px, 100%);
  margin: 0 auto;
  background: var(--anthracite);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transform: scale(.96);
  transition: transform .3s ease;
}
.contact-modal-overlay.is-open .contact-modal-box { transform: scale(1); }

.contact-modal-box .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  background: rgba(0,0,0,0.35);
}
.contact-modal-box .modal-close:hover { background: rgba(0,0,0,0.55); }

.contact-modal-inner { display: flex; align-items: stretch; }

.contact-modal-intro {
  flex: 0 0 36%;
  padding: 52px 40px;
  background: linear-gradient(160deg, #2f1148 0%, #1c0a26 55%, #150818 100%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-modal-intro .logo-box { width: 54px; height: 54px; }
.contact-modal-intro h2 {
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.18;
}
.contact-modal-intro p { font-size: 14.5px; line-height: 1.7; color: var(--gray-text); }
.contact-direct {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-direct a { font-size: 14px; font-weight: 700; color: var(--white); }
.contact-direct a:hover { color: var(--violet-bright); }

.contact-form-wrap { flex: 1; padding: 52px 44px; min-width: 0; }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.form-field .optional { text-transform: none; font-weight: 500; color: var(--gray-text-dim); }

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--violet-bright);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b4b4ba' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
}
.form-field select option { background: var(--black-soft); color: var(--white); }

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 22px;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; }
.form-consent label { font-size: 13px; color: var(--gray-text); line-height: 1.55; }
.form-consent a { color: var(--violet-bright); text-decoration: underline; }

.contact-submit { width: 100%; justify-content: center; }

.form-status { margin-top: 14px; font-size: 14px; line-height: 1.6; min-height: 1px; }
.form-status.is-success { color: #5fdc84; }
.form-status.is-error { color: #ff8686; }

/* ---------- Programmkalender (pages/programm.html) ---------- */
.programm-calendar { padding: 60px 0 100px; }

.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 36px;
}
.cal-month-nav h2 {
  min-width: 220px;
  text-align: center;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cal-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-text);
  flex-shrink: 0;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.cal-nav-btn svg { width: 16px; height: 16px; }
.cal-nav-btn:hover { border-color: var(--violet-bright); color: var(--violet-bright); background: rgba(155,31,224,0.08); }

.cal-day-strip-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.cal-day-nav {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-text);
  transition: border-color .2s ease, color .2s ease;
}
.cal-day-nav svg { width: 14px; height: 14px; }
.cal-day-nav:hover { border-color: var(--violet-bright); color: var(--violet-bright); }

.cal-day-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  flex: 1;
  scrollbar-width: thin;
}
.cal-day-strip::-webkit-scrollbar { height: 6px; }
.cal-day-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.cal-day-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 56px;
  padding: 10px 0;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--anthracite);
  color: var(--gray-text);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.cal-day-btn:hover { border-color: var(--violet-dim); color: var(--white); }
.cal-day-weekday { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; opacity: .75; }
.cal-day-num { font-size: 17px; font-weight: 800; }

.cal-day-btn.is-today { border-color: var(--violet-dim); }
.cal-day-btn.is-today .cal-day-num { color: var(--violet-bright); }
.cal-day-btn.is-selected {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
}
.cal-day-btn.is-selected .cal-day-num,
.cal-day-btn.is-selected .cal-day-weekday { color: #fff; }

.cal-selected-date {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cal-schedule { display: flex; flex-direction: column; gap: 16px; }

.cal-show-card {
  position: relative;
  min-height: 240px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
}
.cal-show-card.is-live {
  border-color: var(--violet-bright);
  animation: cal-live-glow 2.2s ease-in-out infinite;
}

@keyframes cal-live-glow {
  0%, 100% { box-shadow: 0 0 0 1px var(--violet) inset, 0 0 0 0 rgba(180,69,255,0.45); }
  50%      { box-shadow: 0 0 0 1px var(--violet-bright) inset, 0 0 24px 6px rgba(180,69,255,0.55); }
}

@media (prefers-reduced-motion: reduce) {
  .cal-show-card.is-live { animation: none; box-shadow: 0 0 0 1px var(--violet) inset; }
}

.cal-show-media {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, #241028 0%, #150a1c 55%, #0d0d10 100%);
  background-size: cover;
  background-position: center;
}
.cal-show-card.is-live .cal-show-media:not(.has-image) { background: linear-gradient(155deg, #3a1350 0%, #200a30 60%, #0d0d10 100%); }
.cal-show-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.05) 100%);
}

.cal-show-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
}

.cal-show-body {
  position: relative;
  z-index: 2;
  padding: 22px 26px;
  width: 100%;
}
.cal-show-time { font-size: 13px; font-weight: 700; color: var(--violet-bright); letter-spacing: 0.03em; margin-bottom: 6px; }
.cal-show-title { font-size: 19px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.01em; }
.cal-show-desc { margin-top: 6px; font-size: 14px; color: var(--gray-text); max-width: 640px; }

/* ---------- Newsarchiv (pages/news.html) ---------- */
.news-archive { padding: 60px 0 100px; }
.news-archive-list { display: flex; flex-direction: column; gap: 16px; }

.news-archive-card {
  position: relative;
  min-height: 240px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.news-archive-card:focus-visible { outline: 2px solid var(--violet-bright); outline-offset: 2px; }

.news-archive-media {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #2b1236, #160a1c 55%, #0c0c0e);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s ease;
}
.news-archive-media .news-media-icon { width: 18%; display: flex; transition: opacity .3s ease; }
.news-archive-media .news-media-icon svg { width: 100%; opacity: .35; color: var(--violet-bright); }
.news-archive-media.has-image .news-media-icon { opacity: 0; }
.news-archive-card:hover .news-archive-media { transform: scale(1.04); }

.news-archive-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.05) 100%);
}

.news-archive-body { position: relative; z-index: 2; padding: 24px 28px; width: 100%; }
.news-archive-body .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  background: var(--violet);
  color: #fff;
  margin-bottom: 10px;
}
.news-archive-body .tag.exclusive { background: var(--white); color: var(--black); }
.news-archive-date { font-size: 12.5px; color: var(--gray-text-dim); margin-bottom: 4px; }
.news-archive-body h3 { font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.01em; }
.news-archive-body p { margin-top: 8px; font-size: 14px; color: var(--gray-text); max-width: 640px; }

/* ---------- News: Lade-/Leerzustände (Startseite + Archiv) ---------- */
.news-loading,
.news-empty {
  grid-column: 1 / -1;
  padding: 40px 30px;
  text-align: center;
  color: var(--gray-text-dim);
  font-size: 15px;
  border: 1px dashed var(--border);
  border-radius: 6px;
}

/* ---------- KLANG TV Video-Player (Modal) — gemeinsam für News & Mediathek ---------- */
.video-player-modal-overlay { background: rgba(2,2,3,0.96); }

.video-player-modal-box {
  position: relative;
  width: min(960px, 100%);
  background: #000;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transform: scale(.96);
  transition: transform .25s ease;
}
.video-player-modal-overlay.is-open .video-player-modal-box { transform: scale(1); }

.video-player-modal-box .modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  background: rgba(0,0,0,0.4);
}
.video-player-modal-box .modal-close:hover { background: rgba(0,0,0,0.6); }

.video-player-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 60px 16px 22px;
  background: #000;
  border-bottom: 1px solid var(--border);
}
.video-player-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  background: var(--violet);
  color: #fff;
}
.video-player-modal-head h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
}

.video-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-player-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: #000;
}

.video-player-message {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px;
}
.video-player-message[hidden] { display: none; }
.video-player-message svg { width: 44px; color: var(--violet-bright); opacity: .85; }
.video-player-message p { font-size: 14.5px; color: var(--gray-text); max-width: 420px; }

/* ---------- Mediathek-Seite (pages/mediathek.html) ---------- */
.mediathek-archive { padding: 60px 0 100px; }

.mediathek-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.mediathek-filter {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.mediathek-filter:hover { border-color: var(--violet-dim); color: var(--white); }
.mediathek-filter.is-active { background: var(--violet); border-color: var(--violet); color: #fff; }

.mediathek-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mediathek-card {
  background: var(--anthracite);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.mediathek-card:focus-visible { outline: 2px solid var(--violet-bright); outline-offset: 2px; }

.mediathek-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(155deg, #2a1236, #160a1c 55%, #0c0c0e);
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform .4s ease;
}
.mediathek-card:hover .mediathek-card-thumb { transform: scale(1.03); }
.mediathek-card:hover .play-btn { background: var(--violet); border-color: var(--violet); transform: translate(-50%, -50%) scale(1.08); }
.mediathek-card-thumb svg.note { width: 20%; opacity: .3; color: var(--violet-bright); transition: opacity .3s ease; }
.mediathek-card-thumb.has-image svg.note { opacity: 0; }

.mediathek-card-info { padding: 14px 16px 18px; }
.mediathek-card-info .cat { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--violet-bright); }
.mediathek-card-info h3 { margin-top: 5px; font-size: 16px; font-weight: 800; text-transform: uppercase; }
.mediathek-card-info p { margin-top: 4px; font-size: 13px; color: var(--gray-text-dim); }
.mediathek-card-date { margin-top: 8px; font-size: 12px; color: var(--gray-text-dim); opacity: .8; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1200px) {
  /* Ab hier darf die Footer-Navigation intern umbrechen, das Copyright
     bleibt in derselben Zeile stehen, solange Platz ist. */
  .footer-navigation { flex-wrap: wrap; row-gap: 10px; }
}

@media (max-width: 1080px) {
  .programm-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.big { min-height: 420px; }
  .news-card.small { min-height: 240px; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .mediathek-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .header-actions { gap: 10px; }
  .btn-live span.label { display: none; }
  .btn-live { padding: 11px 13px; }
  section { padding: 64px 0; }
  .about-inner { padding-top: 70px; padding-bottom: 70px; }
  .contact-teaser { padding: 64px 0; }
  .contact-teaser-inner { display: flex; flex-direction: column; text-align: center; gap: 36px; }
  .contact-teaser-text { margin-inline: auto; }
  .contact-teaser-text p { margin-left: auto; margin-right: auto; }
  .contact-teaser-direct { justify-content: center; }
  .contact-open-btn { width: 176px; height: 176px; }
  .contact-modal-inner { flex-direction: column; }
  .contact-modal-intro { border-right: none; border-bottom: 1px solid var(--border); flex: none; padding: 40px 28px 30px; }
  .contact-form-wrap { padding: 32px 28px 40px; }
  .programm-calendar { padding: 44px 0 70px; }
  .cal-month-nav h2 { min-width: 0; font-size: 20px; }
  .cal-show-card { min-height: 190px; }
  .cal-show-body { padding: 18px 20px; }
  .cal-show-title { font-size: 17px; }
}

@media (max-width: 640px) {
  .programm-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .mediathek-archive-grid { grid-template-columns: 1fr; }
  .mediathek-filters { gap: 8px; }
  .mediathek-filter { padding: 8px 14px; font-size: 12px; }
  .hero { min-height: auto; padding-bottom: 10px; }
  .hero-inner { padding-top: 44px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 20px; }
  .footer-navigation { flex-wrap: wrap; row-gap: 10px; column-gap: 18px; }
  .footer-copyright { margin-left: 0; text-align: left; }
  .closing { padding-top: 90px; }
  .page-hero h1 { font-size: clamp(24px, 8vw, 40px); }
  .contact-modal-overlay { padding: 0; }
  .contact-modal-box { width: 100%; min-height: 100%; border-radius: 0; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-open-btn { width: 156px; height: 156px; }
  .cal-day-btn { width: 48px; padding: 8px 0; }
  .cal-day-num { font-size: 15px; }
  .cal-nav-btn, .cal-day-nav { width: 32px; height: 32px; }
  .video-player-modal-overlay { padding: 0; }
  .video-player-modal-box { width: 100%; border-radius: 0; }
  .video-player-modal-head { padding: 16px 52px 14px 16px; }
  .news-archive-card { min-height: 190px; }
  .news-archive-body { padding: 18px 20px; }
  .news-archive-body h3 { font-size: 17px; }
}
