.section-video-hero {
  padding: 0;
  aspect-ratio: 9/16;
}

@media (min-width: 768px) {
  .section-video-hero {
    aspect-ratio: 16/9;
  }
}

.video-hero__video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(.55) saturate(1.03) contrast(1.08);
}

.video-hero__video-desktop-wrapper {
  display: none;
}

@media (min-width: 768px) {
  .video-hero__video-desktop-wrapper {
    display: block;
  }

  .video-hero__video-mobile-wrapper {
    display: none;
  }
}

.video-hero__content-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-shadow: 0 0 2.5rem var(--black);
}

.video-hero__headline {
  font-family: var(--large-font);
  font-weight: var(--large-font-weight);
  letter-spacing: var(--large-letter-spacing);
}

.video-hero__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacer--sm);
}

.video-hero__buttons .button {
  box-shadow: 0 0 2.5rem var(--black);
  text-shadow: none;
}
