.page-hero {
  position: relative;
  width: 100%;
  min-height: 381px;
  aspect-ratio: 1440 / 381;
  overflow: hidden;
  color: #292929;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 33%, rgba(255, 255, 255, 0.52) 58%, rgba(255, 255, 255, 0) 100%),
    #ffffff;
}

.page-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 34%, rgba(255, 255, 255, 0.55) 58%, rgba(255, 255, 255, 0) 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.page-hero .page-header {
  position: relative;
  z-index: 2;
  padding-top: 36px;
  padding-bottom: 0;
}

.page-hero .page-header__container,
.page-hero__content {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 80px;
  padding-left: 80px;
}

.page-hero .page-header__back {
  margin-bottom: 0;
}

.page-hero .page-header__title {
  display: none;
}

.page-hero__content {
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-hero__title {
  width: min(778px, 68vw);
  margin: 0 0 12px;
  color: #292929;
  font-family: 'Raleway', sans-serif;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-variant-numeric: proportional-nums lining-nums;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0;
}

.page-hero__description {
  width: 630px;
  max-width: 48vw;
  margin: 0;
  color: #292929;
  font-family: 'Raleway', sans-serif;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-variant-numeric: proportional-nums lining-nums;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .page-hero {
    margin-bottom: 80px;
  }
}

@media (max-width: 1200px) {
  .page-hero .page-header__container,
  .page-hero__content {
    padding-right: 40px;
    padding-left: 40px;
  }

  .page-hero__title {
    font-size: 46px;
  }

  .page-hero__description {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    min-height: clamp(426px, 113.6vw, 520px);
    aspect-ratio: auto;
    background: #ffffff;
  }

  .page-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0.9) 62%, #ffffff 76%);
  }

  .page-hero__image {
    height: 100%;
    object-position: center top;
  }

  .page-hero .page-header {
    display: none;
  }

  .page-hero .page-header__container,
  .page-hero__content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .page-hero__content {
    padding-top: clamp(222px, 59.2vw, 274px);
    padding-bottom: 32px;
  }

  .page-hero__title,
  .page-hero__description {
    width: 100%;
    max-width: none;
  }

  .page-hero__title {
    margin-bottom: 12px;
    font-size: clamp(20px, 5.87vw, 24px);
    line-height: 130%;
  }

  .page-hero__description {
    font-size: clamp(15px, 4.27vw, 18px);
    line-height: 150%;
  }
}
