:root {
  --episode-page-bg: #ffffff;
  --episode-surface: #053272;
  --episode-text: #053272;
  --episode-text-muted: rgba(5, 50, 114, 0.56);
  --episode-border: #acd6f4;
  --episode-heading: #0346ab;
  --episode-share-icon: #5e6c8d;
  --episode-hero-padding-y: 32px;
  --episode-hero-inner-width: min(1499px, calc(100% - 421px));
  --episode-content-inner-width: min(1496px, calc(100% - 421px));
  --spotify-embed-height: 152px;
}

body,
.wrapper,
.page-holder,
.main {
  background: #ffffff;
}

.page-holder {
  background: #ffffff !important;
}

.episode-detail-page {
  background: #ffffff;
  color: var(--episode-text);
  font-family: "proxima-nova", "Proxima Nova", Arial, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

.episode-detail-page a {
  color: inherit;
  text-decoration: none;
}

.episode-detail-hero {
  position: relative;
  overflow: hidden;
  background: var(--episode-surface);
  border-radius: 0 30px 30px 0;
  padding: var(--episode-hero-padding-y) 0;
}

.episode-detail-hero__inner {
  width: calc(100% - 120px);
  padding: 3rem 0;

  max-width: 1499px;
  margin: 0 auto;
}

.episode-detail-hero__card {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.episode-detail-hero__card iframe {
  margin: unset;
}

.episode-detail-hero__card--spotify {
  height: auto;
  padding: 0;
  background: transparent;
}

.episode-detail-hero--vidcast .episode-detail-hero__card {
  width: min(619px, calc(100% - 240px));
  height: auto;
  aspect-ratio: 619 / 358;
  margin: 0 auto;
  border-radius: 30px;
  background: #ffffff;
}

.episode-detail-hero__embed,
.episode-detail-hero__fallback {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.episode-detail-hero__fallback {
  object-fit: cover;
  object-position: center;
}

.episode-detail-hero--vidcast .episode-detail-hero__fallback {
  object-fit: cover;
}

.episode-detail-hero__card--spotify {
  height: var(--spotify-embed-height);
}

.episode-detail-content {
  padding: 18px 0 72px;
}

.episode-detail-content__inner {
  width: var(--episode-content-inner-width);
  margin: 0 auto;
}

.episode-detail-breadcrumbs {
  margin: 13px 0 0;
}

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

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

.episode-detail-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;
}

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

.episode-detail-body {
  padding: 54px 0 0;
}

.episode-detail-copy {
  padding: 25px 0 0;
}

.episode-detail-copy__subtitle {
  margin: 0 0 6px;
  color: var(--episode-heading);
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
}

.episode-detail-copy__heading {
  margin: 0 0 14px;
  color: var(--episode-heading);
  font-size: 30px;
  line-height: 33px;
  font-weight: 400;
  max-width: 1496px;
}

.episode-detail-copy__meta {
  margin: 0 0 24px;
  color: var(--episode-text);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.episode-detail-copy__meta-row {
  margin: 0;
}

.episode-detail-copy__meta-row+.episode-detail-copy__meta-row {
  margin-top: 2px;
}

.episode-detail-copy__meta-label {
  font-weight: 700;
}

.episode-detail-copy__meta-value {
  font-weight: 400;
}

.episode-detail-copy__body {
  font-size: 22px;
  line-height: 33px;
  font-weight: 400;
  color: var(--episode-text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.episode-detail-copy__body p {
  margin: 0 0 33px;
}

.episode-detail-copy__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1279px) {
  :root {
    --episode-hero-padding-y: 28px;
  }

  .episode-detail-hero--vidcast .episode-detail-hero__card {
    width: min(619px, calc(100% - 160px));
  }

  .episode-detail-copy__body {
    font-size: 20px;
    line-height: 31px;
  }
}

@media (max-width: 1023px) {
  .episode-detail-hero {
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .episode-detail-hero__inner,
  .episode-detail-content__inner {
    width: calc(100% - 52px);
  }

  .episode-detail-hero--vidcast .episode-detail-hero__card {
    width: min(619px, calc(100% - 96px));
    border-radius: 24px;
  }

  .episode-detail-copy__heading {
    font-size: 26px;
    line-height: 34px;
  }

  .episode-detail-copy__subtitle {
    font-size: 17px;
    line-height: 23px;
  }

  .episode-detail-copy__meta {
    margin-bottom: 22px;
  }

  .episode-detail-copy__body {
    font-size: 18px;
    line-height: 29px;
  }
}

@media (max-width: 767px) {
  :root {
    --episode-hero-padding-y: 24px;
  }

  .episode-detail-hero {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  .episode-detail-hero--vidcast .episode-detail-hero__card {
    width: calc(100% - 32px);
    border-radius: 20px;
  }

  .episode-detail-body {
    padding-top: 42px;
  }

  .episode-detail-copy {
    padding-top: 18px;
  }

  .episode-detail-copy__heading {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 14px;
  }

  .episode-detail-copy__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
  }

  .episode-detail-copy__meta {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 23px;
  }

  .episode-detail-copy__body {
    font-size: 17px;
    line-height: 28px;
  }

  .episode-detail-copy__body p {
    margin-bottom: 28px;
  }
}

@media (max-width: 479px) {
  :root {
    --episode-hero-padding-y: 20px;
    --spotify-embed-height: 85px;
  }

  .episode-detail-hero__inner,
  .episode-detail-content__inner {
    width: calc(100% - 24px);
  }

  .episode-detail-hero {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .episode-detail-hero--vidcast {
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .episode-detail-hero--vidcast .episode-detail-hero__card {
    width: calc(100% - 24px);
    border-radius: 18px;
  }

  .episode-detail-body {
    padding-top: 36px;
  }

  .episode-detail-copy {
    padding-top: 16px;
  }

  .episode-detail-copy__heading {
    font-size: 20px;
    line-height: 28px;
  }

  .episode-detail-copy__subtitle {
    font-size: 15px;
    line-height: 21px;
  }

  .episode-detail-copy__meta {
    font-size: 14px;
    line-height: 21px;
  }

  .episode-detail-copy__body {
    font-size: 16px;
    line-height: 26px;
  }

  .episode-detail-copy__body p {
    margin-bottom: 24px;
  }
}