.podcast-page .primary-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--green);
}

.podcast-page .mobile-nav a[aria-current="page"] {
  color: var(--lime);
}

.podcast-kicker {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.podcast-page-hero {
  position: relative;
  padding-block: 58px 72px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.podcast-page-hero::before {
  position: absolute;
  right: -210px;
  bottom: -410px;
  width: 760px;
  aspect-ratio: 1;
  border: 105px solid rgba(137, 230, 15, 0.07);
  border-radius: 50%;
  content: "";
}

.podcast-page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 86px);
}

.podcast-page-hero__intro {
  display: grid;
  align-content: center;
  padding-block: 28px;
}

.podcast-page-hero h1 {
  max-width: 9ch;
  margin: 20px 0 24px;
  font-family: var(--headline);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.89;
}

.podcast-page-hero__intro > p {
  max-width: 55ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.podcast-platforms a {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.podcast-platforms a:hover {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.podcast-page-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.podcast-page-hero__stats div {
  padding: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.podcast-page-hero__stats dt {
  color: var(--lime);
  font-family: var(--headline);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.podcast-page-hero__stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.latest-podcast {
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
  background: var(--white);
}

.latest-podcast__image {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: #0d1211;
}

.latest-podcast__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
  content: "";
}

.latest-podcast__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-podcast__badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.latest-podcast__play {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 18px;
}

.latest-podcast__body {
  padding: 28px 32px 32px;
  color: var(--ink);
}

.podcast-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: #84908d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.podcast-meta > * + *::before {
  margin-right: 12px;
  color: var(--green);
  content: "/";
}

.latest-podcast h2 {
  max-width: 18ch;
  margin: 13px 0 10px;
  font-family: var(--headline);
  font-size: clamp(29px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.latest-podcast__body > p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 11px;
}

.podcast-about {
  padding-block: 86px;
  background: var(--mist);
}

.podcast-about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1fr) minmax(330px, 0.8fr);
  gap: clamp(35px, 5vw, 70px);
}

.podcast-about__title h2 {
  max-width: 10ch;
  margin: 12px 0 0;
  font-family: var(--headline);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.podcast-about__copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.podcast-about__copy p + p {
  margin-top: 22px;
}

.podcast-format {
  margin: 0;
  padding: 0;
  border-top: 1px solid #cfd6d2;
  list-style: none;
}

.podcast-format li {
  display: grid;
  grid-template-columns: 35px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid #cfd6d2;
}

.podcast-format li > span {
  grid-row: 1 / 3;
  color: var(--green);
  font-family: var(--headline);
  font-size: 15px;
  font-weight: 800;
}

.podcast-format strong {
  font-family: var(--headline);
  font-size: 14px;
}

.podcast-format small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.45;
}

.podcast-archive {
  padding-block: 90px 104px;
}

.podcast-archive__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.podcast-archive__head h2 {
  margin: 10px 0 0;
  font-family: var(--headline);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.podcast-archive__head > p {
  max-width: 48ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.season-nav {
  display: flex;
  align-items: stretch;
  margin-bottom: 54px;
  overflow-x: auto;
  color: var(--white);
  background: var(--ink);
}

.season-nav > span,
.season-nav a {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding-inline: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.season-nav > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.season-nav a {
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.season-nav a strong {
  color: var(--lime);
  font-family: var(--headline);
  font-size: 19px;
}

.season-nav a[aria-current="true"],
.season-nav a:hover {
  color: var(--ink);
  background: var(--lime);
}

.season-nav a[aria-current="true"] strong,
.season-nav a:hover strong {
  color: var(--green-dark);
}

.season-block {
  scroll-margin-top: 30px;
}

.season-block + .season-block {
  margin-top: 92px;
}

.season-block__head {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 5px solid var(--green);
}

.season-block__number {
  color: var(--lime);
  font-family: var(--headline);
  font-size: 92px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.season-block__head div > span,
.season-block__head > strong {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.season-block__head h2 {
  margin: 7px 0 5px;
  font-family: var(--headline);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.season-block__head p {
  max-width: 75ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.episode-list {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.episode-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 190px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.episode-row__image {
  position: relative;
  align-self: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: var(--ink);
}

.episode-row__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.4));
  content: "";
}

.episode-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.episode-row:hover .episode-row__image img {
  transform: scale(1.035);
}

.episode-row__image span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  transform: translate(-50%, -50%);
}

.episode-row__body {
  min-width: 0;
  padding: 22px 30px;
}

.episode-row h3 {
  margin: 10px 0 7px;
  font-family: var(--headline);
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.episode-row__body > p {
  max-width: 75ch;
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.episode-row__guest {
  color: var(--ink) !important;
}

.episode-row__production {
  display: block;
  margin-top: 12px;
  color: #8b9492;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.episode-row__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-right: 28px;
  padding: 10px 15px;
  border: 1px solid var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.episode-row__action::after {
  margin-left: 8px;
  color: var(--green);
  content: "→";
}

.episode-row__action:hover {
  border-color: var(--lime);
  background: var(--lime);
}

.season-block--archive .season-block__head {
  border-bottom-color: var(--line);
}

.season-block--archive .season-block__number {
  color: #d6ddd9;
}

.podcast-follow {
  position: relative;
  padding-block: 74px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.podcast-follow::after {
  position: absolute;
  top: -180px;
  right: 4%;
  width: 370px;
  aspect-ratio: 1;
  border: 55px solid rgba(137, 230, 15, 0.12);
  border-radius: 50%;
  content: "";
}

.podcast-follow__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 70px;
}

.podcast-follow h2 {
  margin: 11px 0 12px;
  font-family: var(--headline);
  font-size: clamp(45px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.podcast-follow p {
  max-width: 50ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.podcast-follow nav {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.podcast-follow nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding-inline: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--headline);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.podcast-follow nav a span {
  color: var(--lime);
}

.podcast-follow nav a:hover {
  color: var(--ink);
  background: var(--lime);
}

.podcast-follow nav a:hover span {
  color: var(--green-dark);
}

@media (max-width: 1050px) {
  .podcast-page-hero__grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
    gap: 38px;
  }

  .podcast-about__grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .podcast-format {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .podcast-format li {
    border-right: 1px solid #cfd6d2;
  }

  .episode-row {
    grid-template-columns: 190px minmax(0, 1fr) auto;
  }
}

@media (max-width: 820px) {
  .podcast-page-hero__grid,
  .podcast-about__grid,
  .podcast-follow__grid {
    grid-template-columns: 1fr;
  }

  .latest-podcast {
    min-height: 0;
  }

  .podcast-about__title h2 {
    max-width: none;
  }

  .podcast-format {
    grid-column: auto;
  }

  .podcast-archive__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .season-block__head {
    grid-template-columns: 90px 1fr;
  }

  .season-block__head > strong {
    grid-column: 2;
  }

  .episode-row {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .episode-row__action {
    grid-column: 2;
    justify-self: start;
    margin: 0 0 22px 30px;
  }
}

@media (max-width: 560px) {
  .podcast-page-hero {
    padding-block: 42px 48px;
  }

  .podcast-page-hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .podcast-page-hero__stats {
    margin-top: 30px;
  }

  .latest-podcast {
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .latest-podcast__image {
    min-height: 0;
  }

  .latest-podcast__body {
    padding: 24px;
  }

  .podcast-about,
  .podcast-archive {
    padding-block: 58px;
  }

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

  .podcast-format li {
    border-right: 0;
  }

  .season-nav {
    margin-right: -12px;
    margin-left: -12px;
  }

  .season-block + .season-block {
    margin-top: 68px;
  }

  .season-block__head {
    grid-template-columns: 62px 1fr;
    gap: 15px;
  }

  .season-block__number {
    font-size: 64px;
  }

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

  .episode-row__image {
    min-height: 0;
  }

  .episode-row__body {
    padding: 22px;
  }

  .episode-row__action {
    grid-column: auto;
    justify-self: stretch;
    margin: 0 22px 24px;
  }

  .podcast-follow {
    padding-block: 58px;
  }
}
