.podcast-hero {
  padding: 42px 0 62px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(700px 420px at 12% 10%, rgba(16, 185, 129, 0.14), transparent 70%);
}

.podcast-hero__grid {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.podcast-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.podcast-hero h1 {
  margin: 14px 0 20px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.podcast-hero h1 span { color: var(--emerald-bright); }
.podcast-dek { max-width: 720px; color: var(--slate-light); font-size: 1.08rem; }
.podcast-disclosure { max-width: 720px; color: var(--slate); font-size: 0.82rem; }
.podcast-subscribe { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 20px; }
.podcast-subscribe a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(52, 211, 153, 0.42);
  background: rgba(16, 185, 129, 0.12);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.podcast-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 54px;
  padding-top: 64px;
  padding-bottom: 96px;
}

.podcast-index {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-glass);
}

.podcast-index a { color: var(--slate-light); font-size: 0.86rem; text-decoration: none; }
.podcast-index a:hover { color: var(--emerald-bright); }
.podcast-episodes { display: grid; gap: 32px; min-width: 0; }
.podcast-episode {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(22, 33, 58, 0.96), rgba(18, 28, 48, 0.88));
  box-shadow: var(--shadow-card);
  scroll-margin-top: 100px;
}

.podcast-episode__meta { color: var(--emerald-bright); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.podcast-episode h2 { margin: 8px 0 22px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.podcast-player { width: 100%; margin: 0 0 20px; }
.podcast-description { font-size: 1.02rem; }
.podcast-related { margin: 26px 0 36px; padding: 22px 24px; border-left: 4px solid var(--emerald); background: rgba(7, 12, 24, 0.42); }
.podcast-related ul { margin-bottom: 0; }
.podcast-transcript { border-top: 1px solid var(--border); padding-top: 8px; }
.podcast-transcript h3 { margin-top: 30px; font-size: 1.4rem; }
.podcast-transcript h4 { color: var(--emerald-bright); }

@media (max-width: 850px) {
  .podcast-hero__grid, .podcast-layout { grid-template-columns: 1fr; }
  .podcast-cover { max-width: 390px; }
  .podcast-index { position: static; }
}

@media (max-width: 520px) {
  .podcast-hero { padding-top: 24px; }
  .podcast-layout { padding-top: 36px; }
  .podcast-episode { padding: 22px; }
}
