.video-hero {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 702px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: rgb(20, 20, 20);
  background-color: rgba(var(--color-background));
}

.video-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0);
}

.video-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  padding: 24px;
  text-align: center;
}

.video-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.9px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

.video-hero__heading {
  margin: 0 0 28px;
  font-size: 92px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0.92px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

/* Specificity bumped above base `a:not(.button)` (0,1,1) so the dark-on-white
   CTA text is not overridden by the color-scheme link color. */
.video-hero a.video-hero__cta {
  display: inline-block;
  padding: 18px 44px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(20, 20, 20) !important;
  background: rgb(255, 255, 255) !important;
}

.video-hero a.video-hero__cta:hover {
  background: #e2f9a1 !important;
  color: #000 !important;
}

@media (max-width: 959px) {
  .video-hero {
    min-height: 658px;
  }
  .video-hero__heading {
    font-size: 44px;
  }
}
