:root {
  --podcast-page-bg: #f1f5ff;
  --podcast-hero-bg: #053272;
  --podcast-card-bg: #012f66;
  --podcast-blue: #0346ab;
  --podcast-dark-blue: #053272;
  --podcast-breadcrumb: rgba(5, 50, 114, 0.48);
  --podcast-title: #0346ab;
  --podcast-cta: #053272;
  --podcast-accent: #b55bf2;
}

* {
  box-sizing: border-box;
}

.podcast-vidcasts-page {
  background: var(--podcast-page-bg);
  color: var(--podcast-dark-blue);
  font-family: "proxima-nova", "Proxima Nova", Arial, sans-serif;
  overflow: hidden;
}

.podcast-vidcasts-page a {
  color: inherit;
  text-decoration: none;
}

.podcast-hero {
  position: relative;
  overflow: hidden;
  min-height: 686px;
  padding: 179px 0 40px;
  background: var(--podcast-hero-bg);
  border-bottom-right-radius: 30px;
}

.podcast-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1499px, calc(100% - 421px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 153px;
}

.podcast-hero__copy {
  width: min(694px, 100%);
  padding-top: 8px;
}

.podcast-hero__logo {
  display: block;
  width: min(493px, 100%);
  height: auto;
  margin: -102px 0 112px;
}

.podcast-hero__eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}

.podcast-hero__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.podcast-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.podcast-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 42px;
  font-weight: 400;
  max-width: 694px;
}

.podcast-hero__button {
  border: 0;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--podcast-dark-blue);
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease;
  cursor: pointer;
}

.podcast-hero__button:hover,
.podcast-hero__button:focus-visible {
  transform: translateY(-1px);
  opacity: 0.94;
  outline: none;
}

.podcast-hero__media {
  position: relative;
  flex: 0 0 609px;
  width: 609px;
  margin-top: 0;
}

.podcast-hero__image-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 331px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.podcast-hero__image-frame--fallback {
  background: rgba(255, 255, 255, 0.08);
}

.podcast-hero__image-frame--vidcast.podcast-hero__image-frame--fallback {
  background: rgba(255, 255, 255, 0.1);
}

.podcast-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.podcast-hero__fallback-icon {
  position: absolute;
  inset: 0;
  width: min(240px, 58%);
  height: auto;
  margin: auto;
  object-fit: contain;
}

.podcast-hero__fallback-icon--hero-frame {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-hero__mic {
  position: absolute;
  left: -80px;
  bottom: -99px;
  width: 184px;
  height: 176px;
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
}

.podcast-hero__accent {
  position: absolute;
  top: -99px;
  right: -156px;
  width: 179px;
  height: 176px;
  z-index: 3;
  pointer-events: none;
}

.podcast-hero__accent-art {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.podcast-vidcasts-page__content {
  padding: 0 0 72px;
  background: var(--podcast-page-bg);
}

.podcast-vidcasts-page__inner {
  width: min(1499px, calc(100% - 421px));
  margin: 0 auto;
}

.podcast-section-header {
  margin: 0 0 18px;
}

.podcast-section-header__breadcrumbs {
  margin: 0 0 21px;
}

.podcast-breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  color: var(--podcast-breadcrumb);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.podcast-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.podcast-breadcrumbs__item:not(:last-child)::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  flex: 0 0 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  opacity: 0.78;
}

.podcast-breadcrumbs a:hover,
.podcast-breadcrumbs a:focus-visible {
  opacity: 0.8;
  outline: none;
}

.podcast-section-header__title {
  margin: 0;
  color: var(--podcast-title);
  font-size: 30px;
  line-height: 42px;
  font-weight: 400;
}

.podcast-episodes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 19px;
}

.podcast-episode-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 435px;
  border-radius: 6px;
  background: #ffffff;
}

.podcast-episode-card__media {
  position: relative;
  flex: 0 0 257px;
  height: 257px;
  background: var(--podcast-card-bg);
}

.podcast-episode-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.podcast-episode-card__icon {
  position: absolute;
  left: 50%;
  top: 41px;
  transform: translateX(-50%);
  width: 176px;
  height: 176px;
  object-fit: contain;
  pointer-events: none;
}

.podcast-episode-card__icon--watch {
  width: 105px;
  height: 139px;
  top: 59px;
}

.podcast-episode-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-end;
  gap: 33px;
  padding: 25px 30px 44px;
}

.podcast-episode-card__title {
  margin: 0;
  color: var(--podcast-title);
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  max-width: 413px;
}

.podcast-episode-card__link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  align-self: flex-end;
  color: var(--podcast-cta);
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.podcast-episode-card__link svg {
  width: 25px;
  height: 16px;
  flex: 0 0 auto;
}

.podcast-episode-card__link:hover,
.podcast-episode-card__link:focus-visible {
  opacity: 0.88;
  outline: none;
}

@media (max-width: 1599px) {
  .podcast-hero__inner,
  .podcast-vidcasts-page__inner {
    width: min(1499px, calc(100% - 120px));
  }

  .podcast-hero__inner {
    gap: 96px;
  }

  .podcast-hero__media {
    flex-basis: 540px;
    width: 540px;
  }

  .podcast-hero__logo {
    width: min(240px, 100%);
    margin-bottom: 76px;
  }

  .podcast-hero__accent {
    top: -88px;
    right: -142px;
  }
}

@media (max-width: 1279px) {
  .podcast-hero {
    min-height: 640px;
    padding-top: 150px;
  }

  .podcast-hero__media {
    flex-basis: 460px;
    width: 460px;
  }

  .podcast-hero__image-frame {
    height: 290px;
  }

  .podcast-hero__accent {
    top: -70px;
    right: -116px;
    width: 150px;
    height: 147px;
  }

  .podcast-episodes {
    gap: 56px 16px;
  }

  .podcast-episode-card__title {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 1023px) {
  .podcast-hero {
    min-height: auto;
    padding: 96px 0 48px;
    border-bottom-right-radius: 24px;
  }

  .podcast-hero__inner {
    width: calc(100% - 56px);
    flex-direction: column;
    gap: 36px;
  }

  .podcast-hero__copy,
  .podcast-hero__media {
    width: 100%;
    flex-basis: auto;
  }

  .podcast-hero__media {
    max-width: 609px;
  }

  .podcast-hero__logo {
    width: min(220px, 100%);
    margin-bottom: 66px;
  }

  .podcast-hero__accent {
    top: -24px;
    right: -10px;
    width: 150px;
    height: 147px;
  }

  .podcast-vidcasts-page__content {
    padding-bottom: 56px;
  }

  .podcast-vidcasts-page__inner {
    width: calc(100% - 56px);
  }

  .podcast-episodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .podcast-hero__inner,
  .podcast-vidcasts-page__inner {
    width: calc(100% - 32px);
  }

  .podcast-hero {
    padding-top: 88px;
  }

  .podcast-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 24px;
  }

  .podcast-hero__logo {
    width: min(190px, 100%);
    margin-bottom: 58px;
  }

  .podcast-hero__title,
  .podcast-section-header__title {
    font-size: 26px;
    line-height: 36px;
  }

  .podcast-hero__button {
    min-height: 46px;
    padding: 0 22px;
    font-size: 16px;
  }

  .podcast-hero__actions {
    gap: 10px;
  }

  .podcast-hero__image-frame {
    height: 260px;
  }

  .podcast-hero__mic {
    left: -36px;
    bottom: -56px;
    width: 138px;
    height: 132px;
  }

  .podcast-hero__accent {
    top: -18px;
    right: 0;
    width: 126px;
    height: 124px;
  }

  .podcast-episodes {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .podcast-episode-card {
    min-height: 0;
  }

  .podcast-episode-card__media {
    height: 230px;
    flex-basis: 230px;
  }

  .podcast-episode-card__body {
    gap: 24px;
    padding: 22px 20px 30px;
  }

  .podcast-section-header__breadcrumbs {
    margin-bottom: 16px;
  }

  .podcast-episode-card__title {
    font-size: 18px;
    line-height: 25px;
  }

  .podcast-episode-card__link {
    gap: 18px;
    font-size: 16px;
  }
}

@media (max-width: 479px) {
  .podcast-hero__inner,
  .podcast-vidcasts-page__inner {
    width: calc(100% - 24px);
  }

  .podcast-hero {
    padding-top: 74px;
    border-bottom-right-radius: 18px;
  }

  .podcast-hero__body {
    gap: 18px;
  }

  .podcast-hero__logo {
    width: min(170px, 100%);
    margin-bottom: 48px;
  }

  .podcast-hero__title {
    font-size: 22px;
    line-height: 31px;
  }

  .podcast-hero__image-frame {
    height: 220px;
  }

  .podcast-hero__mic {
    left: -24px;
    bottom: -42px;
    width: 112px;
    height: 107px;
  }

  .podcast-hero__accent {
    top: -16px;
    right: 0;
    width: 104px;
    height: 102px;
  }

  .podcast-episode-card__media {
    height: 210px;
    flex-basis: 210px;
  }

  .podcast-episode-card__icon {
    width: 140px;
    height: 140px;
    top: 34px;
  }
}
