.podcast-page {
  background: #ffffff;
}

.podcast-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(229,255,80,.10), transparent 26%),
    linear-gradient(135deg, #243b53 0%, #314d68 50%, #4a6680 100%);
  color: #ffffff;
}

.podcast-hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(54px, 7vw, 82px);
}

.podcast-cover-wrap {
  position: relative;
  width: min(100%, 470px);
  justify-self: center;
}

.podcast-cover-wrap::before {
  content: "";
  position: absolute;
  inset: 9% -8% -8% 12%;
  border-radius: 34px;
  background: rgba(11, 22, 33, .26);
  filter: blur(32px);
}

.podcast-cover {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 26px 60px rgba(10, 18, 27, .30);
}

.podcast-hero-copy {
  max-width: 660px;
}

.podcast-eyebrow,
.podcast-section-kicker,
.podcast-episode-meta {
  margin: 0 0 10px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.podcast-eyebrow {
  color: #e5ff50;
}

.podcast-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(3.35rem, 7vw, 6.6rem);
  line-height: .88;
  letter-spacing: -.07em;
}

.podcast-deck {
  max-width: 650px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.58;
}

.podcast-host {
  margin: 0 0 28px;
  color: rgba(255,255,255,.69);
  font-size: .94rem;
}

.podcast-host a {
  color: #ffffff;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.podcast-actions,
.podcast-episode-actions,
.home-field-notes-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.podcast-spotify-button,
.podcast-apple-button,
.podcast-youtube-button,
.podcast-secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}

.podcast-spotify-button {
  background: #e5ff50;
  color: #172029;
  box-shadow: 0 10px 24px rgba(0,0,0,.17);
}

.podcast-spotify-button:hover {
  transform: translateY(-1px);
  background: #efff85;
  box-shadow: 0 13px 30px rgba(0,0,0,.22);
}

.podcast-apple-button {
  border: 1px solid #202832;
  background: #202832;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

.podcast-apple-button:hover {
  transform: translateY(-1px);
  background: #2b3541;
  box-shadow: 0 13px 30px rgba(0,0,0,.21);
}

.podcast-youtube-button {
  border: 1px solid rgba(255,255,255,.5);
  background: #ffffff;
  color: #172029;
  box-shadow: 0 10px 24px rgba(0,0,0,.13);
}

.podcast-youtube-button:hover {
  transform: translateY(-1px);
  background: #f3f6f8;
  box-shadow: 0 13px 30px rgba(0,0,0,.18);
}

.podcast-secondary-button {
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.07);
  color: #ffffff;
}

.podcast-secondary-button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
}

.podcast-platform-note {
  max-width: 590px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.56);
  font-size: .8rem;
  line-height: 1.5;
}

.podcast-latest,
.podcast-about {
  padding-top: clamp(64px, 8vw, 94px);
  padding-bottom: clamp(64px, 8vw, 94px);
}

.podcast-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 5px solid var(--dark);
}

.podcast-section-kicker,
.podcast-episode-meta {
  color: #5e6c7a;
}

.podcast-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.podcast-archive-heading {
  margin-top: clamp(46px, 6vw, 70px);
  scroll-margin-top: 88px;
}

.podcast-episode-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d8dee5;
  border-radius: 22px;
  background: linear-gradient(145deg, #f8fafb 0%, #eef2f5 100%);
  box-shadow: 0 16px 38px rgba(29,35,43,.07);
}

.podcast-episode-number {
  min-height: 420px;
  display: grid;
  place-items: center;
  background: #243b53;
  color: #e5ff50;
  font-size: clamp(3.7rem, 7vw, 6.5rem);
  font-weight: 950;
  letter-spacing: -.08em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.podcast-episode-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 58px);
}

.podcast-episode-copy h3 {
  max-width: 800px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.podcast-episode-copy > p:not(.podcast-episode-meta) {
  max-width: 780px;
  margin-bottom: 13px;
  color: #5f6b78;
  font-size: 1rem;
  line-height: 1.65;
}

.podcast-episode-actions {
  margin-top: 24px;
}

.podcast-episode-actions .podcast-spotify-button,
.podcast-episode-actions .podcast-apple-button,
.podcast-episode-actions .podcast-youtube-button {
  box-shadow: 0 8px 18px rgba(36,59,83,.12);
}

.podcast-episode-actions .podcast-youtube-button {
  border-color: #cbd4dc;
}

.podcast-text-link {
  color: #334b63;
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
}

.podcast-text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.podcast-about {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.podcast-about-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.podcast-about-copy > p:last-child {
  max-width: 780px;
  color: #667085;
  font-size: 1.02rem;
  line-height: 1.68;
}

.podcast-about-card {
  padding: 28px;
  border-radius: 20px;
  background: #243b53;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(29,35,43,.10);
}

.podcast-about-card > span {
  display: block;
  margin-bottom: 17px;
  color: #e5ff50;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.podcast-about-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.podcast-about-card p {
  margin-bottom: 20px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  line-height: 1.62;
}

.podcast-about-card a {
  color: #ffffff;
  font-size: .86rem;
  font-weight: 850;
  text-decoration: none;
}

.podcast-about-card a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .podcast-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .podcast-cover-wrap {
    width: min(78vw, 430px);
  }

  .podcast-hero-copy {
    max-width: 720px;
  }

  .podcast-episode-card {
    grid-template-columns: 1fr;
  }

  .podcast-episode-number {
    min-height: 86px;
    place-items: center start;
    padding: 0 24px;
    writing-mode: initial;
    transform: none;
    font-size: 3.1rem;
  }

  .podcast-about {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .podcast-hero-grid {
    width: min(100% - 28px, 1120px);
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .podcast-cover-wrap {
    width: min(84vw, 390px);
  }

  .podcast-cover {
    border-radius: 20px;
  }

  .podcast-hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .podcast-actions,
  .podcast-episode-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .podcast-spotify-button,
  .podcast-apple-button,
  .podcast-youtube-button,
  .podcast-secondary-button {
    width: 100%;
  }

  .podcast-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .podcast-episode-copy {
    padding: 24px 20px 26px;
  }

  .podcast-episode-copy h3 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .podcast-about-card {
    padding: 22px;
  }
}
