/* Общие блоки контент-страниц: hero-баннер и заголовки секций
   (Figma: о компании 1:8779, доставка 1:9184, партнерам 1:13114 и др.) */

:root {
  --text-slate: #565a60;
  --bg-gray-f7: #f7f7f7;
}

/* --- Hero-баннер страницы (фото + затемнение) --- */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 320px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-hero__title {
  font-weight: var(--fw-bold);
  font-size: 48px;
  line-height: normal;
  color: var(--bg-white);
}

.page-hero__bar {
  width: 60px;
  height: 4px;
  background: var(--yellow-500);
}

.page-hero__desc {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--bg-white);
}

/* --- Заголовок секции с жёлтой линией --- */
.section-head {
  position: relative;
  width: 100%;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border-350);
}

.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--yellow-500);
}

.section-head__title {
  font-weight: var(--fw-medium);
  font-size: 28px;
  line-height: 1;
  letter-spacing: var(--ls-base);
  color: var(--text-brown-dark);
}

@media (max-width: 1023px) {
  .page-hero__title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 200px;
  }

  .page-hero__content {
    gap: 12px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

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

  .page-hero__desc {
    font-size: 14px;
    line-height: 1.55;
  }

  .section-head__title {
    font-size: 22px;
  }
}
