.page-hero {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #071c32;
}

.page-hero-media {
  position: absolute;
  inset: 0 0 0 42%;
  background: #071c32;
}

.page-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 23, 41, 1) 0%, rgba(4, 23, 41, .97) 34%, rgba(4, 23, 41, .76) 51%, rgba(4, 23, 41, .12) 80%, rgba(4, 23, 41, .03) 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 320px;
}

@media (max-width: 840px) {
  .page-hero,
  .page-hero-inner {
    min-height: 280px;
  }

  .page-hero-media {
    inset: 0;
    opacity: .72;
  }

  .page-hero-media img {
    object-position: center;
  }

  .page-hero::after {
    background: linear-gradient(90deg, rgba(4, 23, 41, .98) 0%, rgba(4, 23, 41, .82) 46%, rgba(4, 23, 41, .28) 100%);
  }
}

@media (max-width: 560px) {
  .page-hero,
  .page-hero-inner {
    min-height: 240px;
  }

  .page-hero-media {
    opacity: .55;
  }

  .page-hero::after {
    background: linear-gradient(90deg, rgba(4, 23, 41, .98), rgba(4, 23, 41, .72));
  }
}
