.wrapper.podcast-header-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.podcast-header-wrapper .header-text-container {
    padding: 80px 64px 80px 64px;
    height: 100%;
}
.wrapper.image-only-var .header-text-container {
    padding-bottom: 43px;
}
.wrapper.image-only-var .breadcrumb-container, .wrapper.podcast-header-wrapper.image-only-var .eyebrow-text {
  margin-bottom: 0;
}
.wrapper.podcast-header-wrapper .eyebrow-text {
    color: #8386A0 !important;
    margin-bottom: 24px;
}

.podcast-header-wrapper .header-text-container .header-section-btn {
    margin-top: 24px;
}

.podcast-header-wrapper .header-media-image img {
    aspect-ratio: 3/1;
    width: 100%;
    object-fit: cover;
    overflow: visible;
}

.podcast-header-wrapper .header-media-video video {
    aspect-ratio: 16/9;
}

.podcast-header-wrapper .header-media-video article {
    display: flex;
}


.responsive-video {
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
    display: inline-block;
}


.wrapper.podcast-header-wrapper.header-text-only .header-media,
.wrapper.podcast-header-wrapper.header-with-image .header-media-video,
.wrapper.podcast-header-wrapper.header-with-video .header-media-image,
.wrapper.podcast-header-wrapper.header-with-image-right .header-media-video {
    display: none;
}


.wrapper.podcast-header-wrapper.header-with-image.header-popout-image-top .header-media-image {
    /* padding-top: 64px; */
    overflow: visible !important;
}

.press-release-banner-wrapper h5,
.wrapper.podcast-header-wrapper h1 {
    margin-bottom: 0;
    word-wrap: break-word;
}

.wrapper.podcast-header-wrapper .row {
    --bs-gutter-y: 0;
    --bs-gutter-x: 0;
}


.wrapper.podcast-header-wrapper.header-with-image.header-popout-image-top .header-media-image{
  margin-top: 25px;
}
/** strikethrough edits **/
.header-media-video {
    position: relative;
}
.header-with-strikethrough .header-text-container {
    padding-inline: 0 !important;
    padding-bottom: 0 !important;
}
.header-with-strikethrough .header-text-container .breadcrumb-container {
    padding-inline: 64px;
    position: relative;
    z-index: 2;
}
.header-with-strikethrough .header-text-container h1 {
    white-space: nowrap;
    display: inline-flex;
    line-height: 71%;
}
.header-with-strikethrough .header-text-container h1 > span:first-child {
  margin-right: 48px;
}
.measurement-element {
    position: absolute;
    visibility: hidden;
    white-space: nowrap;
}
.header-with-strikethrough .strike-text {
    display: inline-block;
    position: relative;
}

.header-with-strikethrough .strike-text:after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 6px;
    background-color: #000a3c;
    position: absolute;
    left: 0;
    top: 30%;
}
.wrapper.image-only-var .header-media-image img.desktop-image{
    aspect-ratio: 2/1;
}
.wrapper.image-only-var .header-media-image img.mobile-image{
    aspect-ratio: 1/1;
}
/*** Video Controls CSS ***/
.heroMediaVid-video-container {
  width: 100%;
}

.heroMediaVid-controls-wrapper {
  height: 80px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(360deg, rgba(0, 10, 60, 0.80) 0%, rgba(0, 10, 60, 0.00) 100%) no-repeat;
  /*linear-gradient(360deg, rgb(152 169 251 / 80%) 0%, rgba(0, 10, 60, 0.00) 100%) no-repeat;*/
}

.heroMediaVid-video-controls {
  width: 100%;
  height: calc(100% - 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 15px;
  padding-inline: 50px;
  transition: opacity 0.35s;
  box-sizing: border-box;
}

.hide {
  visibility: hidden;
  opacity: 0;
}

.show {
  visibility: inherit;
  opacity: 1;
}

.heroMediaVid-play-pause-wrapper {
  display: flex;
}

.heroMediaVid-play-pause {
  color: #7feaed;
  transition: color 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
  height: 40px;
  width: 40px;
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  padding: 0;
  border-radius: 50%;
}

.heroMediaVid-play-pause:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.heroMediaVid-play-pause .icon {
  color: #fff;
  height: 50%;
  width: 50%;
  position: absolute;
  outline: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.heroMediaVid-play-pause .icon.play svg,
.heroMediaVid-play-pause .icon.pause svg {
  fill: #fff;
}

.heroMediaVid-play-pause .icon.play.active-btn svg,
.heroMediaVid-play-pause .icon.pause.active-btn svg {
  fill: red;
}

.heroMediaVid-play-pause .icon svg {
  height: auto;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  max-width: 2rem;
  max-height: 2rem;
}

.heroMediaVid-progress-wrapper {
  height: 1.6rem;
  width: 100%;
}

.heroMediaVid-progress-wrapper .heroMediaVid-progress {
  height: 4px;
  width: 100%;
  position: relative;
  background-color: #e9ecef;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.heroMediaVid-progress-wrapper .heroMediaVid-progress .heroMediaVid-internal-progress {
  background-color: #1475ff;
  position: absolute;
  top: 0;
  left: 0;
  outline: thin solid #1475ff;
  height: 100%;
  width: 0px;
}
.press-release-banner-wrapper .extended-title-display,
.press-release-banner-wrapper .title-display {
  display: none;
}

@media (min-width: 1025px) {
  .heroMediaVid-play-pause .icon.pause:hover svg {
    fill: #1475ff;
  }

  .heroMediaVid-play-pause .icon.play:hover svg {
    fill: #1475ff;
  }
}

@media (max-width: 991px) {
  .heroMediaVid-controls-wrapper {
    padding-left: 10px;
    padding-right: 20px;
    max-width: 145rem;
  }

  .heroMediaVid-video-container.playIconRight {
    margin-right: 0;
  }

  .heroMediaVid-video-controls {
    padding-inline: 0px;
  }
}

/*** Video Controls CSS ***/
@media (min-width: 991px) {
    .header-with-strikethrough .header-text-container h1 {
        position: relative;
        left: -11px;
        transform: scale(1.02);
    }
}
@media (max-width: 990px){
    .header-with-strikethrough .header-text-container h1 {
      display: inline-block;
      text-align: center;
      flex-direction: column;
      white-space: normal;
      line-height: 75%;
    }
    .measurement-element {
      white-space: normal;
    }
    .header-with-strikethrough .header-text-container h1 > span:first-child {
      margin-right: 0;
    }
    .header-with-strikethrough .text-input-second {
        display: block;
    }
    .header-with-strikethrough .header-text-container .breadcrumb-container {
      padding-inline: 32px;
    }
}
/** strikethrough edits **/

@media (min-width:1025px) {
    .wrapper.podcast-header-wrapper.header-with-image-right .header-text {
        width: 60%;
        max-width: 60%;
    }

    .wrapper.podcast-header-wrapper.header-with-image-right .header-media {
        width: 40%;
        max-width: 40%;
    }

    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image {
        width: 100%;
        height: 100%;
    }

    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        aspect-ratio: auto;
        overflow: visible;
    }

    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image .tablet-image,
    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image .mobile-image {
        display: none !important;
    }

    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image .desktop-image {
        display: block !important;
    }

}

@media (min-width:1399px) {
    .wrapper.podcast-header-wrapper.header-with-image-right .header-text-container {
        padding-right: 152px;
    }
}

@media (max-width:1024px) {
  .wrapper.podcast-header-wrapper{
    margin-bottom: 64px;
  }
  .wrapper.podcast-header-wrapper.header-with-strikethrough, .wrapper.podcast-header-wrapper.image-only-var{
    margin-bottom: 80px;
  }
    .podcast-header-wrapper .header-text-container {
        padding: 64px 32px;
    }

    .wrapper.image-only-var .header-text-container {
      padding-bottom: 11px;
    }

    .podcast-header-wrapper .header-media-image img {
        aspect-ratio: 3/1;
    }

    .podcast-header-wrapper .header-media-video video {
        aspect-ratio: 16/9;
    }

    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image .desktop-image {
        display: none;
    }

    .wrapper.podcast-header-wrapper.header-with-image-right.header-popout-image-top>section,
    .wrapper.podcast-header-wrapper.header-with-image-right.header-popout-image>section {
        padding-top: 0;
    }

    .wrapper.podcast-header-wrapper.header-with-image.header-popout-image .header-text-container,
    .wrapper.podcast-header-wrapper.header-with-image-right.header-popout-image .header-text-container,
    .wrapper.podcast-header-wrapper.header-with-image-right.header-popout-image-top .header-text-container,
    .wrapper.podcast-header-wrapper.header-with-image.header-popout-image-top .header-text-container {
        padding-bottom: 0;
    }

    .wrapper.podcast-header-wrapper.header-with-image-right.header-popout-image-top .header-media-image{
      margin-top: 25px;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {

    .wrapper.podcast-header-wrapper.header-with-image.header-popout-image img,
    .wrapper.podcast-header-wrapper.header-with-image-right.header-popout-image img,
    .wrapper.podcast-header-wrapper.header-with-image-right.header-popout-image-top img,
    .wrapper.podcast-header-wrapper.header-with-image.header-popout-image-top img {
        aspect-ratio: auto;
    }
}
@media (min-width: 991px){
      .wrapper.image-only-var .header-media-image img.mobile-image {
        display: none !important;
      }
 }
@media (max-width: 990px){
      .wrapper.image-only-var .header-media-image img.desktop-image {
        display: none !important;
      }
 }
@media (max-width:767px) {

    .wrapper.podcast-header-wrapper.header-with-image .header-media-image .desktop-image,
    .wrapper.podcast-header-wrapper.header-with-image .header-media-image .tablet-image,
    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image .tablet-image{
        display: none !important;
    }

    .wrapper.podcast-header-wrapper.header-with-image .header-media-image .mobile-image,
    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image .desktop-image {
        display: block !important;
    }

    .podcast-header-wrapper .header-media-image img {
        aspect-ratio: 1/1;
    }

    .podcast-header-wrapper .header-media-video video,
    .wrapper.podcast-header-wrapper.header-with-image-right.header-popout-image-top img,
    .wrapper.podcast-header-wrapper.header-with-image-right.header-popout-image img,
    .wrapper.podcast-header-wrapper.header-with-image.header-popout-image img {
        aspect-ratio: auto !important;
    }

    .podcast-header-wrapper .header-text-container {
        padding: 64px 16px;
    }
    .header-with-strikethrough .header-text-container .breadcrumb-container {
      padding-inline: 16px;
    }
}

@media (min-width:768px) {

    .wrapper.podcast-header-wrapper.header-with-image .header-media-image .desktop-image,
    .wrapper.podcast-header-wrapper.header-with-image .header-media-image .tablet-image,
    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image .tablet-image {
        display: block;
    }

    .wrapper.podcast-header-wrapper.header-with-image .header-media-image .mobile-image,
    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image .mobile-image,
    .wrapper.podcast-header-wrapper.header-with-image-right .header-media-image .desktop-image {
        display: none;
    }
}
