/*
Theme Name:        Sprechstunde Rettungsdienst
Theme URI:         https://sprechstunde-rettungsdienst.de
Author:            Verlag Stumpf + Kossendey
Author URI:        https://www.skverlag.de
Description:       Eigenständiges WordPress-Theme für den Podcast „Sprechstunde Rettungsdienst" — der Fortbildungspodcast aus dem Hause Stumpf + Kossendey Verlag. Entwickelt im Look des Podcast-Covers mit Marineblau, Neongelb und Bebas-Neue-Display-Schrift.
Version:           1.4.0
Requires at least: 6.0
Tested up to:      6.6
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       sprechstunde-rd
Tags:              podcast, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments
*/

/* ============ ROOT VARIABLES ============ */
:root {
  --navy:        #0f2a52;
  --navy-light:  #1a3d6e;
  --navy-deep:   #0a1f3d;
  --navy-darker: #061530;
  --neon:        #d4ee2a;
  --neon-bright: #e6ff3a;
  --rescue-red:  #e63946;
  --white:       #ffffff;
  --offwhite:    #f5f7fb;
  --muted:       rgba(255, 255, 255, 0.7);
  --line:        rgba(255, 255, 255, 0.12);
  --shadow:      0 20px 60px rgba(0, 0, 0, 0.35);

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; }
a   { color: inherit; }

/* ============ NAVIGATION ============ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10, 31, 61, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  padding: 16px 5vw;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.nav-logo::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--neon); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--neon);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* Mobile-Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-logo { font-size: 16px; letter-spacing: 0.5px; gap: 8px; }
  .nav-logo::before { width: 9px; height: 9px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy-deep);
    padding: 24px 5vw;
    border-bottom: 1px solid var(--line);
    gap: 20px;
  }
  .nav-links.open { display: flex; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px 5vw 80px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 238, 42, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(230, 57, 70, 0.06), transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.02) 80px,
      rgba(255, 255, 255, 0.02) 81px
    );
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas:
    "top    cover"
    "bottom cover";
  gap: 0 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text-top    { grid-area: top; align-self: end; padding-bottom: 24px; }
.hero-text-bottom { grid-area: bottom; align-self: start; padding-top: 24px; }
.hero-cover       { grid-area: cover; }

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "cover"
      "bottom";
    gap: 36px;
  }
  .hero-text-top, .hero-text-bottom { align-self: auto; padding-top: 0; padding-bottom: 0; }
  .hero-cover { max-width: 360px; margin: 0 auto; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--neon);
  color: var(--navy);
  padding: 8px 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}
.hero-badge::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 24px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 0 solid transparent;
  border-top: 10px solid var(--neon);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--rescue-red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--neon);
  display: inline-block;
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 6px;
  background: var(--rescue-red);
  z-index: -1;
  transform: skew(-8deg);
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--neon);
  color: var(--navy);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
  background: var(--neon-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.platform-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.platform-row .label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.platform-row a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.platform-row a:hover { color: var(--neon); }

/* Icons in Plattform-Reihe */
.platform-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.platform-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-cover {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin-left: auto;
}
.hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 4px solid var(--neon);
  transition: transform 0.4s;
}
.hero-cover img:hover { transform: rotate(-1deg) scale(1.02); }
.hero-cover::before {
  content: "";
  position: absolute;
  top: 16px; left: 16px;
  width: 100%; height: 100%;
  background: var(--rescue-red);
  z-index: -1;
}

/* ============ SECTIONS allgemein ============ */
section {
  padding: 100px 5vw;
  position: relative;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
  padding-left: 36px;
  position: relative;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 2px;
  background: var(--neon);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

/* ============ ÜBER DEN PODCAST ============ */
.about {
  background: var(--navy-light);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--muted);
}
.about-text p strong { color: var(--white); }

.audience-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 600px) {
  .audience-list { grid-template-columns: 1fr; }
}
.audience-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--neon);
  font-size: 15px;
}
.audience-list li::before {
  content: "✓";
  color: var(--neon);
  font-weight: 700;
}

/* ============ EPISODEN ============ */
.episodes {
  background: var(--navy);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.episode-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--line);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.episode-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon);
}
.episode-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 30px;
  width: 14px; height: 14px;
  background: inherit;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: translateY(-50%) rotate(-45deg);
}

.episode-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon);
  font-weight: 600;
}
.episode-number {
  background: var(--neon);
  color: var(--navy);
  padding: 4px 10px;
  letter-spacing: 1px;
}
.episode-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--white);
}
.episode-guest {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  font-style: italic;
}
.episode-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.episode-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.episode-tag {
  font-size: 11px;
  background: rgba(212, 238, 42, 0.1);
  color: var(--neon);
  padding: 4px 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.episode-listen {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--neon);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.episode-listen:hover { color: var(--neon); }

.episode-card.placeholder { opacity: 0.6; }
.episode-card .episode-number.coming {
  background: rgba(212, 238, 42, 0.2);
  color: var(--neon);
}

/* ============ ZEITSCHRIFT RETTUNGSDIENST ============ */
.magazine {
  background: var(--navy-light);
  position: relative;
}
.magazine-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .magazine-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* Visual-Bereich: Cover + roter Akzent + Label übers Cover */
.magazine-visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  padding: 30px 0;
}

/* Echtes Zeitschriften-Cover */
.magazine-cover {
  display: block;
  width: 100%;
  height: auto;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}
.magazine-visual:hover .magazine-cover {
  transform: rotate(0deg) scale(1.02);
}

/* Roter Akzentblock unten links */
.magazine-visual::before {
  content: "";
  position: absolute;
  bottom: 16px; left: -14px;
  width: 70px; height: 70px;
  background: var(--rescue-red);
  z-index: 0;
}

/* "Aus dem gleichen Verlag" als Schrägband oben links über dem Cover */
.magazine-cover-label {
  position: absolute;
  top: 6px;
  left: -28px;
  background: var(--neon);
  color: var(--navy);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: rotate(-4deg);
  z-index: 4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Text-Spalte */
.magazine-text {
  position: relative;
  padding-top: 80px; /* Platz für Sprechblase */
}

/* Schmaler Sprechblasen-Balken über der Headline */
.magazine-bubble {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--navy-deep);
  border: 3px solid var(--neon);
  padding: 14px 24px;
  margin-bottom: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(-1deg);
  position: relative;
  z-index: 3;
  width: fit-content;
}
/* Schwanz nach unten, zeigt auf die Headline */
.magazine-bubble::before,
.magazine-bubble::after {
  content: "";
  position: absolute;
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
.magazine-bubble::before {
  left: 60px;
  border-top: 18px solid var(--neon);
  bottom: -21px;
}
.magazine-bubble::after {
  left: 62px;
  border-top: 14px solid var(--navy-deep);
  bottom: -14px;
}

/* Stat-Eintrag horizontal: Zahl + Label nebeneinander */
.bubble-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  position: relative;
  padding-right: 28px;
}
.bubble-stat::after {
  /* vertikaler Trenner */
  content: "";
  position: absolute;
  right: 0;
  top: 4px; bottom: 4px;
  width: 1px;
  background: rgba(212, 238, 42, 0.25);
}
.bubble-stat:last-child { padding-right: 0; }
.bubble-stat:last-child::after { display: none; }

.bubble-stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--neon);
  letter-spacing: 1px;
}
.bubble-stat-label {
  font-size: 10px;
  color: var(--white);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

/* section-label in der Textspalte verstecken — wird oben als Cover-Label angezeigt */
.magazine-text > .section-label { display: none; }

/* Mobile-Anpassungen */
@media (max-width: 900px) {
  .magazine-text { padding-top: 30px; }
  .magazine-bubble {
    gap: 18px;
    padding: 12px 18px;
  }
  .bubble-stat { padding-right: 18px; }
  .bubble-stat-number { font-size: 26px; }
  .bubble-stat-label { font-size: 9px; }
}
@media (max-width: 600px) {
  .magazine-visual { max-width: 360px; }
  .magazine-cover-label {
    top: 0;
    left: -14px;
    font-size: 10px;
    padding: 6px 14px;
  }
  .magazine-bubble {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .bubble-stat { padding-right: 14px; }
  .bubble-stat::after { top: 6px; bottom: 6px; }
  .bubble-stat-number { font-size: 22px; }
}

.magazine-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 22px;
}
.magazine-text p strong { color: var(--white); }

.magazine-cta {
  margin-top: 28px;
}

/* ============ HOSTS ============ */
.hosts {
  background: var(--navy);
  position: relative;
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 700px) {
  .hosts-grid { grid-template-columns: 1fr; }
}
.host-card {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--neon);
  padding: 36px 32px;
}
.host-card .role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 8px;
}
.host-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.host-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============ KONTAKT ============ */
.contact {
  background: var(--navy-light);
  position: relative;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-inner { grid-template-columns: 1fr; gap: 30px; }
}

.contact-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 16px;
}

/* CF7-/Standard-Form-Stil */
.contact .wpcf7-form,
.contact-form {
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select,
.contact .wpcf7-form input[type="text"],
.contact .wpcf7-form input[type="email"],
.contact .wpcf7-form textarea,
.contact .wpcf7-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
  margin: 0;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.contact .wpcf7-form input:focus,
.contact .wpcf7-form textarea:focus,
.contact .wpcf7-form select:focus {
  outline: none;
  border-color: var(--neon);
}
.form-field textarea,
.contact .wpcf7-form textarea {
  min-height: 130px;
  resize: vertical;
}
.form-field .hint,
.contact .wpcf7-form .hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* CF7 generiert <p>- und Wrapper-Tags um die Felder — alle Standard-Abstände entfernen */
.contact .wpcf7-form p {
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
.contact .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin: 0;
  padding: 0;
}
.contact .wpcf7-form br { display: none; }

/* Acceptance-Checkbox: Checkbox + Text in einer Zeile, linksbündig */
.contact .wpcf7-form .wpcf7-acceptance {
  display: block;
}
.contact .wpcf7-form .wpcf7-list-item {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 0 !important;
}
.contact .wpcf7-form .wpcf7-list-item input[type="checkbox"] {
  width: auto !important;
  margin: 4px 0 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
  accent-color: var(--neon);
}
.contact .wpcf7-form .wpcf7-list-item-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  cursor: pointer;
}
.contact .wpcf7-form .wpcf7-list-item-label a {
  color: var(--neon);
}

/* Submit-Button für CF7 im Stil der Primärbutton */
.contact .wpcf7-form input[type="submit"] {
  background: var(--neon);
  color: var(--navy);
  border: 0;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  width: auto;
  margin-top: 8px;
}
.contact .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-darker);
  padding: 60px 5vw 30px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.6;
}
.site-footer h5 {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.site-footer ul a:hover { color: var(--neon); }

/* Adressblock im Footer (Verlag) */
.footer-address .address-line {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-address a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-address a:hover { color: var(--neon); }

.footer-bottom {
  max-width: 1280px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 20px;
}
.footer-bottom a:hover { color: var(--neon); }

/* ============ Pulse-Linie Hero-Decoration ============ */
.pulse-line {
  position: absolute;
  bottom: 40px;
  left: 5vw;
  right: 5vw;
  max-width: 1280px;
  margin: 0 auto;
  height: 40px;
  opacity: 0.3;
  pointer-events: none;
}
.pulse-line svg { width: 100%; height: 100%; }

/* ============ Single-Episode-Page (extra Layout) ============ */
.single-episode {
  padding: 140px 5vw 80px;
  background: var(--navy);
  min-height: 100vh;
}
.single-episode .container { max-width: 880px; }
.single-episode .episode-meta-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.single-episode h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.single-episode .episode-content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 40px;
}
.single-episode .episode-content p { margin-bottom: 18px; }
.single-episode .episode-content h2,
.single-episode .episode-content h3 {
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 1px;
  margin: 32px 0 16px;
}
.single-episode .player-embed {
  margin: 32px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.single-episode .player-embed iframe {
  width: 100%;
  display: block;
  border: 0;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neon);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.back-link:hover { color: var(--neon-bright); }

/* WP-Standard-Klassen, die der Editor liefert */
.alignleft   { float: left; margin-right: 20px; }
.alignright  { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px; width: 1px;
  overflow: hidden;
}
