.hero {
  width: 100%;
  overflow: hidden;
}

.hero__media {
  position: relative;
  width: 100%;
  max-height: 50vh;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-inline: auto;
}

.hero__media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  /* background: linear-gradient(to bottom, transparent, var(--color-base-bg)); */
  pointer-events: none;
}

.hero__image,
.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: calc(-1 * clamp(60px, 5.85vw, 108px));
  padding: 0 24px 72px;
  text-align: center;
}

.hero--has-video .hero__content {
  margin-top: 5%;
}

.hero__headline {
  margin: 0 0 24px;
}

.hero__body {
  margin: 0 0 48px;
  width: min(100%, 1000px);
  color: var(--color-copy-muted);
  font-size: var(--type-body-large-font-size);
  font-weight: var(--type-body-large-font-weight);
  line-height: var(--type-body-large-line-height);
  text-wrap: balance;
}

@media (max-width: 1024px) {
  .hero__content {
    margin-top: 0;
    padding: 32px var(--viewport-gap) 56px;
  }

  .hero__body {
    margin-bottom: 36px;
  }
}

@media (max-width: 720px) {
  .hero__content {
    padding: 28px var(--viewport-gap) 40px;
  }

  .hero__body {
    font-size: var(--type-body-font-size);
    width: min(100%, 34ch);
  }
}
