/* ════════════════════════════════════════
   SECTION 8 — ПОДАРКИ
════════════════════════════════════════ */

.gifts {
  position: relative;
  background-image: url('image/section_8/background_for_the_dekstop_version8.png');
  background-size: cover;
  background-position: center top;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

@media (max-width: 768px) {
  .gifts {
    background-image: url('image/section_8/background_for_the_mobile_version8.png');
    min-height: 120svh;
  }
}

/* ── Контейнер ── */
.gifts__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  max-width: 1100px;
  padding: 80px clamp(24px, 4vw, 60px) 80px;
  gap: 20px;
}

@media (max-width: 768px) {
  .gifts__inner {
    align-items: center;
    justify-content: flex-start;
    padding: 116px 24px 80px;
    min-height: 100svh;
    gap: 16px;
  }
}

/* ── Текстовый блок ── */
.gifts__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  max-width: 380px;
  text-align: right;
}

@media (max-width: 768px) {
  .gifts__content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
}

/* ── Заголовок ── */
.gifts__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 7vw, 54px);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0;
}

.gifts__divider {
  width: clamp(100px, 35%, 200px);
  opacity: 0.55;
}

/* ── Текст ── */
.gifts__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 500;
  font-style: italic;
  color: var(--brown-dark);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .gifts__text {
    font-size: clamp(17px, 3.5vw, 21px);
  }
}
