section.hero {
  position: relative;
  background-color: var(--background);
}
section.hero .hero-wrapper {
  display: -ms-grid;
  display: grid;
  gap: clamp(40px, 8vw, 120px);
}
section.hero .btn {
  margin-top: 1.25rem;
}
section.hero .hero-image {
  position: relative;
  display: block;
  z-index: 0;
  pointer-events: none;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  will-change: transform;
}
section.hero .hero-image img,
section.hero .hero-image video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}
section.hero .hero-image .hero-media--scaled {
  border-radius: 4px;
  overflow: hidden;
}
section.hero .text-block {
  position: relative;
  background: var(--background);
  z-index: 1;
  padding-top: clamp(160px, 12vw, 250px);
  padding-bottom: clamp(40px, 8vw, 120px);
}
section.hero .text-block h1 {
  font: var(--h1-font);
  -ms-hyphens: auto;
      hyphens: auto;
}
section.hero .image-placeholder,
section.hero .content-pusher {
  display: none !important;
}