.featured-video {
  position: relative;
  overflow: hidden;
  padding: clamp(9rem,11.8vw,20rem) 0;
}
.featured-video.is-bg-black {
  background-color: var(--color-black);
}

.featured-video__container {
  --container-width: 126rem;
  position: relative;
}

.featured-video__media-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 2rem;
  overflow: hidden;
}


/* Embed */

.featured-video__oembed-container {
  height: 100%;
  position: relative;
  width: 100%;
}

.featured-video__iframe-wrapper {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.featured-video__oembed-container-iframe {
  height: 100%;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.featured-video__oembed-custom-thumbnail,
.featured-video__oembed-custom-thumbnail:hover,
.featured-video__oembed-custom-thumbnail:focus,
.featured-video__oembed-custom-thumbnail:active {
  cursor: pointer;
  align-items: center;
  appearance: none;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  border: none;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.featured-video__oembed-custom-thumbnail::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  opacity: 0;
  background-color: rgb(42,42,42);
  transition: opacity 0.2s;
}
.featured-video__oembed-custom-thumbnail:hover::after,
.featured-video__oembed-custom-thumbnail:focus::after {
  opacity: 0.15;
}

.featured-video__oembed-custom-thumbnail-icon {
  width: 100%;
}
.featured-video__oembed-custom-thumbnail-icon svg {
  width: 16%;0
}

.featured-video__oembed-custom-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.featured-video__oembed-custom-thumbnail--hide {
  display: none;
}

.featured-video__embed-container {
  height: 100%;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.featured-video__embed-container iframe {
  left: 0;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.featured-video__oembed-info {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}


.featured-video__heading {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  background-color: var(--color-black);
  border-radius: 2rem;
  margin: 0 0 -3rem;
  padding: clamp(3.5rem,6vw,8rem);
  transform: translateY(-3rem);
  pointer-events: none;
}
.is-bg-black .featured-video__heading {
  background-color: var(--color-mulberry);
}
.is-active .featured-video__heading {
  animation-name: moveHeading;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes moveHeading {
  0% {
    z-index: 3;
    transform: translateY(-3rem);
  }
  50% {
    z-index: 1;
    transform: translateY(1rem);
  }
  100% {
    z-index: 1;
    transform: translateY(-3rem);
  }
}

 .featured-video__bg-image {
   position: absolute;
   z-index: 0;
   top: 0;
   width: auto;
   max-width: initial;
   height: 100%;
   transform: translateX(-50%);
   left: 50%;
}
