.video-hero__container {
  /*position: relative; */
  aspect-ratio: 16/9;
  max-height: 100dvh;
  width: 100%;
  overflow: hidden;
}
.video-hero__container video {
  width: 100%;
  height: 100%;
}
.video-hero__container-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  z-index: 2;
}
.video-hero__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-hero__play-pause {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: var(--env-spacing-small);
  z-index: 3;
}
@media (min-width: 768px) {
  .video-hero__play-pause {
    padding: var(--env-spacing-xx-large);
  }
}
.video-hero__play-pause button {
  opacity: 1;
  transition: all 0.2s ease-in-out;
  border: 0;
}
.video-hero__play-pause button:hover, .video-hero__play-pause button:focus {
  opacity: 1;
  border: 0;
}

.video-hero__poster + .video-hero__play-pause {
   display: none;
}