.page-header {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 201, 40, 0.1), transparent 26%),
    #111;
  color: #fff;
}

.page-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  background: var(--beehive-accent, #ffc928);
  content: "";
}

.page-header__art {
  position: absolute;
  top: 50%;
  right: 2%;
  z-index: 0;
  width: min(30vw, 440px);
  transform: translateY(-50%);
  opacity: 0.09;
  stroke: var(--beehive-accent, #ffc928);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.page-header__container {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: clamp(240px, 18vw, 300px);
  padding-top: clamp(44px, 4vw, 60px);
  padding-bottom: clamp(44px, 4vw, 60px);
  flex-direction: column;
  justify-content: center;
}

.page-header__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.page-header__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-header__slogan {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.page-header__slogan::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--beehive-accent, #ffc928);
  content: "";
}

.page-header__title {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-family: var(--font_bdogrotesk);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.page-header__description {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .page-header {
    margin-top: 70px;
  }
}

@media (max-width: 991px) {
  .page-header__art {
    right: -10%;
    width: min(58vw, 420px);
    opacity: 0.07;
  }

  .page-header__container {
    min-height: 260px;
  }

  .page-header__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .page-header__description {
    max-width: 680px;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .page-header__art {
    top: 44%;
    right: -26%;
    width: 82vw;
    opacity: 0.06;
  }

  .page-header__container {
    min-height: 240px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .page-header__content {
    gap: 20px;
  }

  .page-header__title {
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
  }

  .page-header__description {
    font-size: 17px;
    line-height: 1.45;
  }
}
