.page-hero {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.page-hero__image-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  max-height: 90vh;
  transform: translateZ(0);
}
.page-hero__image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-hero__title-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
.page-hero__title {
  display: block;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  line-height: 1.1;
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 800;
  font-family: var(--font-display);
}
@media (max-width: 768px) {
  .page-hero__title {
    font-size: clamp(32px, 10vw, 48px);
  }
}
.page-hero__image {
  width: 110%;
  height: 140%;
  top: -20%;
  position: absolute;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/*# sourceMappingURL=page-hero.css.map */
