.podcast-promo {
  padding: clamp(62px, 8vw, 105px) 0;
  border-block: 1px solid #292929;
  background:
    radial-gradient(circle at 20% 45%, rgba(196,255,6,.045), transparent 28%),
    #080808;
}

.podcast-promo-grid {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(45px, 7vw, 105px);
}

.podcast-promo-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 24px 70px rgba(0,0,0,.65);
}

.podcast-promo-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color .25s ease;
  pointer-events: none;
}

.podcast-promo-cover img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .55s ease;
}

.podcast-promo-cover:hover::after,
.podcast-promo-cover:focus-visible::after {
  border-color: rgba(196,255,6,.72);
}

.podcast-promo-cover:hover img,
.podcast-promo-cover:focus-visible img {
  transform: scale(1.025);
}

.podcast-promo-copy h2 {
  margin: 8px 0 17px;
  color: #fff;
  font-size: clamp(43px, 5vw, 67px);
  font-weight: 300;
  line-height: .98;
  text-transform: uppercase;
}

.podcast-promo-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 0 0 27px;
  color: #c6c6c6;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.podcast-promo-copy .button {
  min-width: 205px;
}

.podcast-promo-compact {
  padding-block: clamp(52px, 6.5vw, 82px);
  background:
    radial-gradient(circle at 24% 50%, rgba(196,255,6,.035), transparent 24%),
    #060606;
}

.podcast-promo-compact .podcast-promo-grid {
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 82px);
}

.podcast-promo-compact .podcast-promo-copy h2 {
  font-size: clamp(38px, 4.2vw, 57px);
}

.linkhub-podcast {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 0 0 2px;
  padding: 16px;
  border: 1px solid #343434;
  background: linear-gradient(135deg, rgba(255,255,255,.035), transparent 70%);
  color: #ddd;
  text-align: left;
  transition: border-color .2s ease, transform .2s ease;
}

.linkhub-podcast:hover,
.linkhub-podcast:focus-visible {
  border-color: var(--green);
  transform: translateY(-2px);
}

.linkhub-podcast > img {
  display: block;
  width: 105px;
  height: 105px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.2);
}

.linkhub-podcast-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.linkhub-podcast-copy small {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
}

.linkhub-podcast-copy strong {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.linkhub-podcast-copy > span {
  margin-top: 9px;
  color: #a9a9a9;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 780px) {
  .podcast-promo-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }

  .podcast-promo-cover {
    width: min(78vw, 390px);
    margin-inline: auto;
  }

  .podcast-promo-copy {
    text-align: center;
  }

  .podcast-promo-copy h2 {
    font-size: clamp(39px, 12vw, 57px);
  }

  .podcast-promo-copy > p:not(.kicker) {
    margin-inline: auto;
  }

  .podcast-promo-compact .podcast-promo-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .podcast-promo-compact .podcast-promo-cover {
    width: min(68vw, 310px);
  }

  .podcast-promo-compact .podcast-promo-copy h2 {
    font-size: clamp(36px, 10.5vw, 50px);
  }
}

@media (max-width: 420px) {
  .linkhub-podcast {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 13px;
  }

  .linkhub-podcast > img {
    width: 88px;
    height: 88px;
  }

  .linkhub-podcast-copy strong {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .podcast-promo-cover img,
  .linkhub-podcast {
    transition: none;
  }
}
