.section-hero {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  min-height: calc(100vw * 1.3 / 3);
  margin: 0 auto;
  width: 100%;
}
.section-hero .section__inner {
  width: 100%;
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: stretch;
}
/* .section-hero .section__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-hero .section__bg .section__bg-media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(50%);
} */
.section-hero .section__content {
  width: 100%;
  padding: 0 2.4rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}

.section-hero .section__media {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.8rem;
  background-color: var(--color-bg-muted);
}
.section-hero .section__media .section__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-hero .section__media .section__preview {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(50%);
  transition: 0.3s;
}
.section-hero .section__media .section__preview.hidden {
  opacity: 0;
  pointer-events: none;
}
.section-hero .section__media .section__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.section-hero .section__media .button-play {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 2rem;
  transition: 0.3s;
}
.section-hero .section__media .button-play.hidden {
  opacity: 0;
  pointer-events: none;
}
.section-hero .section__media .button-play__icon {
  background-color: rgba(255, 255, 255, 0.1);
  width: 12rem;
  height: 12rem;
  aspect-ratio: unset;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1%;
  flex-shrink: 0;
}
.section-hero .section__media .button-play__icon .icon {
  width: 50%;
  stroke: #fff;
  fill: none;
  max-height: 100%;
  display: block;
}
.section-hero .section__media .button-play__label {
  display: block;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  font-size: 2.4rem;
}

.section-hero .section__text {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  padding: 8rem 0 8rem 5.6rem;
}

.section-hero .section__badges {
  display: none;
}

.section-hero .section__text .hero-heading {
  display: flex;
  max-width: min(85rem, 100%);
  flex-direction: column;
  gap: 1.2rem;
}
.section-hero .section__text .hero-title {
  font-size: 7.2rem;
  line-height: 1.1;
  font-weight: 400;
}
.section-hero .section__text .hero-subtitle {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 400;
}
.section-hero .section__text .hero-description {
  line-height: 1.5;
  display: block;
  max-width: min(85rem, 100%);
  margin-top: 3.6rem;
}
.section-hero .section__text .section__actions {
  display: flex;
  gap: 6rem;
  align-items: center;
  margin-top: 6rem;
}
.section-hero .section__text .section__links {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
  flex-wrap: wrap;
}
.section-hero .section__text .section__link {
  display: flex;
  height: 6rem;
  align-items: center;
  padding: 0 3.6rem;
  border-radius: 20rem;
  transition: 0.3s;
  background-color: #445f4b;
  color: #fff;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}
.section-hero .section__text .section__link:hover {
}

@media (width <= 768px) {
  .section-hero {
    min-height: calc(100vw * 1.5);
  }
  .section-hero .section__content {
    padding: 0 0.6rem;
    grid-template-columns: 1fr;
    gap: 6rem;
  }

  .section-hero .section__media {
    aspect-ratio: 1/1;
  }

  .section-hero .section__text {
    padding: 6rem 2.2rem 0;
  }
  .section-hero .section__text .hero-heading {
    max-width: unset;
    gap: 1.2rem;
  }
  .section-hero .section__text .hero-title {
    font-size: 5.2rem;
  }
  .section-hero .section__text .hero-subtitle {
    font-size: 2.4rem;
  }
  .section-hero .section__text .hero-description {
    max-width: unset;
  }
  .section-hero .section__text .section__actions {
    width: 100%;
    margin-top: 3.6rem;
  }
  .section-hero .section__text .section__links {
    width: 100%;
    flex-direction: column;
  }
  .section-hero .section__text .section__link {
    width: 100%;
  }
  .section-hero .section__text .section__link:hover {
  }
}
