:root {
  --hk-blue: #2f86bd;
  --hk-blue-dark: #123f63;
  --hk-blue-soft: #e6f4fb;
  --hk-yellow: #ffd95a;
  --hk-yellow-soft: #fff2bd;
  --hk-ink: #172434;
  --hk-muted: #5c6b78;
  --hk-white: #ffffff;
  --hk-paper: #f8fbfd;
  --hk-border: rgba(18, 63, 99, 0.14);
  --hk-shadow: 0 18px 45px rgba(18, 63, 99, 0.12);
  --hk-radius: 24px;
  --hk-nav-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--hk-nav-height) + 20px);
}

body {
  margin: 0;
  color: var(--hk-ink);
  background: var(--hk-paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
video {
  max-width: 100%;
}

::selection {
  background: var(--hk-yellow);
  color: var(--hk-blue-dark);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--hk-blue-dark);
  background: var(--hk-yellow);
  text-decoration: none;
}

.hk-navbar {
  min-height: var(--hk-nav-height);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hk-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--hk-border);
  box-shadow: 0 10px 28px rgba(18, 63, 99, 0.10);
}

.hk-brand img {
  width: clamp(150px, 18vw, 210px);
  height: auto;
  display: block;
}

.hk-navbar .navbar-toggler {
  border: 1px solid rgba(18, 63, 99, 0.25);
  border-radius: 14px;
  padding: 0.55rem 0.7rem;
}

.hk-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(47, 134, 189, 0.18);
}

.hk-navbar .navbar-toggler-icon {
  filter: invert(21%) sepia(58%) saturate(880%) hue-rotate(169deg) brightness(90%) contrast(93%);
}

.hk-navbar .nav-link {
  color: var(--hk-blue-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
}

.hk-navbar .nav-link:hover,
.hk-navbar .nav-link:focus {
  color: var(--hk-blue-dark);
  background: var(--hk-blue-soft);
}

.hk-navbar .nav-link-external {
  color: var(--hk-blue-dark);
  background: linear-gradient(135deg, var(--hk-yellow), #ffe990);
  border: 1px solid rgba(18, 63, 99, 0.10);
}

.hk-hero {
  position: relative;
  min-height: 760px;
  height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--hk-nav-height);
  background: var(--hk-blue-dark) url('../images/hallo-kassel-poster.jpg') center / cover no-repeat;
}

.hk-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  opacity: 1;
  background: transparent;
}

.hk-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 217, 90, 0.72), transparent 30%),
    radial-gradient(circle at 20% 22%, rgba(47, 134, 189, 0.62), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.46) 100%);
}

.hk-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  background: linear-gradient(0deg, var(--hk-paper), rgba(248, 251, 253, 0));
  z-index: 1;
  pointer-events: none;
}

.hk-hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding-block: 5rem 7rem;
}

.hk-kicker,
.hk-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--hk-blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hk-kicker::before,
.hk-section-label::before {
  content: "";
  width: 38px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hk-blue), var(--hk-yellow));
}

.hk-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--hk-blue-dark);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.55);
}

.hk-hero-text {
  max-width: 670px;
  margin: 1.35rem 0 0;
  color: #24384a;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
}

.hk-hero-actions,
.hk-social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn.hk-btn-primary,
.btn.hk-btn-outline,
.btn.hk-btn-outline-dark {
  border-radius: 999px;
  padding: 0.86rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.btn.hk-btn-primary {
  color: var(--hk-blue-dark);
  background: linear-gradient(135deg, var(--hk-yellow), #ffec99);
  border: 1px solid rgba(18, 63, 99, 0.12);
  box-shadow: 0 12px 26px rgba(18, 63, 99, 0.14);
}

.btn.hk-btn-primary:hover,
.btn.hk-btn-primary:focus {
  color: var(--hk-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(18, 63, 99, 0.18);
}

.btn.hk-btn-outline {
  color: var(--hk-blue-dark);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 63, 99, 0.22);
}

.btn.hk-btn-outline:hover,
.btn.hk-btn-outline:focus {
  color: var(--hk-blue-dark);
  background: var(--hk-white);
}

.btn.hk-btn-outline-dark {
  color: var(--hk-blue-dark);
  background: transparent;
  border: 1px solid rgba(18, 63, 99, 0.24);
}

.btn.hk-btn-outline-dark:hover,
.btn.hk-btn-outline-dark:focus {
  background: var(--hk-white);
}

.hk-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.hk-section-soft {
  background:
    linear-gradient(180deg, rgba(230, 244, 251, 0.82), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 8% 10%, rgba(255, 217, 90, 0.32), transparent 25%);
}

.hk-intro {
  background: var(--hk-paper);
}

.hk-intro h2,
.hk-section-head h2,
.hk-social-band h2,
.hk-contact-box h2 {
  color: var(--hk-blue-dark);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hk-intro h2 {
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.hk-section-head {
  max-width: 820px;
  margin: 0 auto 2.6rem;
}

.hk-section-head h2,
.hk-social-band h2,
.hk-contact-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hk-section-head p,
.hk-contact-box p,
.hk-social-band p,
.hk-card p,
.hk-footer p {
  color: var(--hk-muted);
}

.lead {
  color: #25384b;
  font-size: 1.22rem;
  font-weight: 500;
}

.hk-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--hk-shadow);
}

.hk-card h3 {
  color: var(--hk-blue-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.hk-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.15rem;
  border-radius: 18px;
  color: var(--hk-blue-dark);
  background: linear-gradient(135deg, var(--hk-blue-soft), var(--hk-yellow-soft));
  font-weight: 900;
}

.hk-text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--hk-blue-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 3px solid var(--hk-yellow);
}

.hk-text-link:hover,
.hk-text-link:focus {
  color: var(--hk-blue);
}

.hk-text-link.is-disabled {
  color: #7a8792;
  border-bottom-color: rgba(122, 135, 146, 0.35);
  cursor: default;
  pointer-events: none;
}

.hk-section-head-with-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
  margin-bottom: 1.8rem;
}

.hk-section-head-with-actions > div:first-child {
  max-width: 760px;
}

.hk-slider-controls {
  display: flex;
  gap: 0.6rem;
}

.hk-slider-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--hk-border);
  border-radius: 999px;
  color: var(--hk-blue-dark);
  background: var(--hk-white);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(18, 63, 99, 0.10);
}

.hk-slider-btn:hover,
.hk-slider-btn:focus {
  background: var(--hk-yellow-soft);
}

.hk-guest-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.4rem 0.2rem 1.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--hk-blue) rgba(47, 134, 189, 0.12);
}

.hk-guest-card {
  scroll-snap-align: start;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  background: var(--hk-white);
  box-shadow: var(--hk-shadow);
}

.hk-guest-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  color: rgba(18, 63, 99, 0.76);
  background:
    linear-gradient(135deg, rgba(47, 134, 189, 0.34), rgba(255, 217, 90, 0.62)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.45) 0 12px, rgba(255,255,255,0.18) 12px 24px);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hk-guest-body {
  padding: 1.25rem;
}

.hk-guest-body h3 {
  margin: 0 0 0.45rem;
  color: var(--hk-blue-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.hk-guest-body p {
  color: var(--hk-muted);
  margin-bottom: 1rem;
}

.hk-guest-body span {
  display: inline-flex;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  color: var(--hk-blue-dark);
  background: var(--hk-yellow-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.hk-social-band {
  color: var(--hk-blue-dark);
  background:
    linear-gradient(135deg, rgba(47, 134, 189, 0.12), rgba(255, 217, 90, 0.32)),
    var(--hk-white);
}

.hk-social-actions {
  justify-content: flex-lg-end;
}

.hk-contact {
  padding-top: 4rem;
}

.hk-contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--hk-border);
  border-radius: calc(var(--hk-radius) + 8px);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 217, 90, 0.38), transparent 34%),
    linear-gradient(135deg, #ffffff, #eef8fd);
  box-shadow: var(--hk-shadow);
}

.hk-footer {
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, var(--hk-blue-dark), #0b2d49);
}

.hk-footer-logo {
  width: min(260px, 80vw);
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22));
}

.hk-footer h2 {
  margin-bottom: 0.9rem;
  color: var(--hk-yellow);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hk-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hk-footer li + li {
  margin-top: 0.45rem;
}

.hk-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.hk-footer a:hover,
.hk-footer a:focus {
  color: var(--hk-yellow);
}

.hk-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
}

.hk-backtop {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(18, 63, 99, 0.18);
  border-radius: 999px;
  color: var(--hk-blue-dark);
  background: var(--hk-yellow);
  box-shadow: 0 12px 26px rgba(18, 63, 99, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hk-backtop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hk-navbar .navbar-collapse {
    margin-top: 0.8rem;
    padding: 0.8rem;
    border: 1px solid var(--hk-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--hk-shadow);
  }

  .hk-navbar .nav-link {
    padding: 0.85rem 1rem;
  }

  .hk-hero {
    min-height: 680px;
    height: auto;
  }

  .hk-contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  :root {
    --hk-nav-height: 70px;
  }

  .hk-hero {
    min-height: 640px;
  }

  .hk-hero-content {
    padding-block: 4rem 6rem;
  }

  .hk-hero-overlay {
    background:
      radial-gradient(circle at 82% 18%, rgba(255, 217, 90, 0.55), transparent 35%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66));
  }

  .hk-section {
    padding: 4rem 0;
  }

  .hk-section-head-with-actions {
    align-items: start;
    flex-direction: column;
  }

  .hk-guest-slider {
    grid-auto-columns: minmax(250px, 82vw);
  }

  .hk-footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Hallo Kassel: Ergänzungen für Kennzahlen und Archiv-Hinweis */
.hk-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: clamp(2rem, 4vw, 3.2rem);
}

.hk-stat-card {
  padding: 1.35rem;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 217, 90, 0.30), transparent 34%),
    var(--hk-white);
  box-shadow: var(--hk-shadow);
}

.hk-stat-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--hk-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hk-stat-card strong {
  display: block;
  color: var(--hk-blue-dark);
  font-size: 1.18rem;
  line-height: 1.18;
}

.hk-stat-card p {
  margin: 0.65rem 0 0;
  color: var(--hk-muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.hk-archive-section {
  background:
    radial-gradient(circle at 86% 28%, rgba(47, 134, 189, 0.12), transparent 30%),
    var(--hk-paper);
}

.hk-archive-section h2 {
  color: var(--hk-blue-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hk-archive-section p {
  color: var(--hk-muted);
}

.hk-archive-help {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--hk-border);
  border-radius: calc(var(--hk-radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(230, 244, 251, 0.92));
  box-shadow: var(--hk-shadow);
}

.hk-archive-help h3 {
  margin-bottom: 1rem;
  color: var(--hk-blue-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.hk-archive-help ol {
  margin: 0;
  padding-left: 1.25rem;
  color: #25384b;
  font-weight: 600;
}

.hk-archive-help li + li {
  margin-top: 0.5rem;
}

.hk-archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

@media (max-width: 991.98px) {
  .hk-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* Hallo Kassel: Trennung von Sendungen und Archiv */
.hk-archive-card .hk-mini-steps {
  margin: 1rem 0 1.2rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(230, 244, 251, 0.72);
  color: #25384b;
}

.hk-mini-steps strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--hk-blue-dark);
}

.hk-mini-steps ol {
  margin: 0;
  padding-left: 1.1rem;
  font-weight: 650;
  line-height: 1.55;
}

.hk-mini-steps li + li {
  margin-top: 0.35rem;
}

/* Gäste-Slider mit echten Stills */
.hk-guest-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--hk-blue-soft);
  text-decoration: none;
}

.hk-guest-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 220ms ease, filter 220ms ease;
}

.hk-guest-card:hover .hk-guest-image,
.hk-guest-card:focus-within .hk-guest-image {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.03);
}

.hk-guest-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--hk-blue-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 3px solid var(--hk-yellow);
}

.hk-guest-link:hover,
.hk-guest-link:focus {
  color: var(--hk-blue);
}


/* Archive pages */
.hk-page-hero {
  position: relative;
  padding: calc(var(--hk-nav-height) + 6rem) 0 5rem;
  overflow: hidden;
  color: var(--hk-blue-dark);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 217, 90, 0.52), transparent 32%),
    radial-gradient(circle at 14% 18%, rgba(47, 134, 189, 0.34), transparent 28%),
    linear-gradient(135deg, #ffffff, #e9f7fd 68%, #fff3c8);
}

.hk-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: linear-gradient(0deg, var(--hk-paper), rgba(248,251,253,0));
  pointer-events: none;
}

.hk-page-hero .container {
  position: relative;
  z-index: 1;
}

.hk-page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--hk-blue-dark);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.hk-page-hero p:not(.hk-kicker) {
  max-width: 790px;
  margin-top: 1.25rem;
  color: #2a4052;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 600;
}

.hk-page-main {
  background: var(--hk-paper);
}

.hk-year-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.4rem;
}

.hk-year-nav a,
.hk-archive-year-card {
  text-decoration: none;
}

.hk-year-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--hk-border);
  border-radius: 999px;
  color: var(--hk-blue-dark);
  background: var(--hk-white);
  font-weight: 900;
}

.hk-year-nav a:hover,
.hk-year-nav a:focus,
.hk-year-nav a.is-current {
  background: var(--hk-yellow);
  color: var(--hk-blue-dark);
}

.hk-archive-year-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hk-archive-year-card {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  padding: 1.45rem;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  background: var(--hk-white);
  box-shadow: var(--hk-shadow);
}

.hk-archive-year-card span {
  color: var(--hk-blue-dark);
  font-size: 2.1rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hk-archive-year-card strong {
  color: var(--hk-blue-dark);
  font-size: 1.05rem;
}

.hk-archive-year-card em {
  margin-top: auto;
  color: var(--hk-muted);
  font-style: normal;
}

.hk-archive-year-card:hover,
.hk-archive-year-card:focus {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fff, var(--hk-yellow-soft));
}

.hk-episode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.hk-episode-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.hk-episode-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  background: var(--hk-white);
  box-shadow: var(--hk-shadow);
}

.hk-episode-card-wide {
  max-width: 900px;
  margin-inline: auto;
}

.hk-episode-card h2 {
  color: var(--hk-blue-dark);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.18;
}

.hk-episode-list {
  margin: 1rem 0 1.4rem;
  padding-left: 1.15rem;
  color: #2d4052;
}

.hk-episode-list li + li {
  margin-top: 0.35rem;
}

.hk-muted-note {
  color: var(--hk-muted);
}

.hk-episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.hk-episode-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  color: var(--hk-blue-dark);
  background: var(--hk-yellow-soft);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.hk-episode-link:hover,
.hk-episode-link:focus {
  color: var(--hk-blue-dark);
  background: var(--hk-yellow);
}

.hk-episode-link.is-disabled {
  color: #6b7783;
  background: #edf1f4;
}

.hk-page-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hk-archive-help-wide {
  max-width: 980px;
  margin: 0 auto;
}

.hk-dpv-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 250px;
  margin-top: 1rem;
  padding: 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.hk-dpv-badge img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
}

.hk-dpv-badge span {
  color: rgba(255,255,255,0.86);
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .hk-archive-year-grid,
  .hk-episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .hk-page-hero {
    padding: calc(var(--hk-nav-height) + 4rem) 0 4rem;
  }
  .hk-archive-year-grid,
  .hk-episode-grid {
    grid-template-columns: 1fr;
  }
}


/* Erweiterter Kontaktbereich */
.hk-contact-box-rich {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: stretch;
}

.hk-contact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hk-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hk-contact-details {
  display: grid;
  gap: 1rem;
}

.hk-contact-detail-card {
  padding: 1.2rem;
  border: 1px solid rgba(47, 134, 189, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.hk-contact-detail-card h3 {
  margin-bottom: 0.75rem;
  color: var(--hk-blue-dark);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hk-contact-detail-card p {
  margin-bottom: 0.45rem;
  color: #263d50;
}

.hk-contact-detail-card a {
  color: var(--hk-blue-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--hk-yellow);
}

.hk-contact-detail-card a:hover,
.hk-contact-detail-card a:focus {
  color: var(--hk-blue);
}

.hk-contact-note {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(47, 134, 189, 0.16);
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .hk-contact-box-rich {
    grid-template-columns: 1fr;
  }
}
