.hero-scene.hero-scene-photo {
  background: var(--color-surface-soft);
}

.hero-scene-photo::before,
.hero-scene-photo::after {
  display: none;
}

.hero-scene-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero.page-hero-with-photo {
  min-height: 30rem;
  background: var(--color-bg);
}

.page-hero.page-hero-with-photo::after {
  display: none;
}

.page-hero-with-photo > .container-wide {
  padding-right: 45%;
}

.page-hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  display: block;
  width: 43%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 760px) {
  .page-hero.page-hero-with-photo {
    min-height: 0;
    padding-bottom: 0;
  }

  .page-hero-with-photo > .container-wide {
    padding-right: 0;
  }

  .page-hero-photo {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 2rem;
    aspect-ratio: 16 / 9;
  }
}
.page-hero-photo--align-right {
  object-position: right center;
}