.page-hero {
  width: 100%;
  position: relative;
}
.page-hero .section__bg {
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.page-hero .section__bg-media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* .page-hero .section__bg-media.section__bg-image {
}
.page-hero .section__bg-media.section__bg-video {
} */
.page-hero .section__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 10;
  align-items: stretch;
  padding: 10rem 2.8rem 6rem;
  position: relative;
}
.page-hero.has-media .section__inner {
  background-color: rgb(var(--color-surface-inverse-rgb) / 0.5);
  padding-top: 14rem;
}
.page-hero .section__heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.2rem;
}
.page-hero .section__title {
  display: block;
  font-size: var(--font-size-h2);
  line-height: var(--line-height-tight);
  font-weight: var(--font-wight-regular);
  font-family: var(--font-family-heading);
}
.page-hero.has-media .section__title {
  color: var(--color-text-inverse);
}
.page-hero .section__subtitle {
  display: block;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-dense);
  opacity: var(--opacity-70);
}
.page-hero.has-media .section__subtitle {
  color: var(--color-text-inverse);
}

/*  */

@media (width >= 1200px) {
  .page-hero .section__inner {
    padding: 10rem 8rem 6rem;
  }
}
