/* ============================
   Секция «Акции» (#offers)
   1rem = 10px при ширине макета 1920px
   ============================ */

.offers {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6.4rem 0 3.8rem;
  background: linear-gradient(to bottom, #687f63 0%, #87a580 50%, #687f63 100%);
}

/* --- Декоративные еловые ветки --- */
.offers__decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.offers__decor--branch-tl {
  width: 27.78rem;
  height: 59.09rem;
  left: -5.54rem;
  top: -11.97rem;
  transform: rotate(-55.88deg) scaleY(-1);
}

.offers__decor--branch-br {
  width: 27.78rem;
  height: 59.09rem;
  right: 2.77rem;
  top: 64.93rem;
  transform: rotate(124.12deg) scaleY(-1);
}

.offers__decor--cones-bl {
  width: 41.3rem;
  height: 27.5rem;
  left: -12.7rem;
  top: 80.74rem;
  transform: rotate(-20.41deg) scaleY(-1);
}

.offers__decor--cones-tr {
  width: 41.3rem;
  height: 27.5rem;
  right: -12.1rem;
  top: -0.66rem;
  transform: rotate(159.59deg) scaleY(-1);
}

/* --- Заголовок секции --- */
.offers__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 900;
  font-size: 10rem;
  color: #ffffff;
  text-align: center;
}

/* --- Карточки акций --- */
.offers__grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14.8rem;
  margin: 1rem 0 4.5rem;
  padding: 0;
  list-style: none;
}

.offers__card {
  position: relative;
  width: 36.8rem;
  height: 72rem;
}

.offers__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offers__card-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #ffffff;
  text-align: center;
}

.offers__card:nth-child(1) .offers__card-title {
  top: 2.6rem;
  width: 35.1rem;
}

.offers__card:nth-child(2) .offers__card-title {
  top: 3.1rem;
  width: 37.7rem;
}

.offers__card:nth-child(3) .offers__card-title {
  top: 3.1rem;
  width: 36.8rem;
}

/* ============================
   Мобильная версия
   ============================ */
@media (max-width: 768px) {
  .offers {
    padding: 4rem 1.6rem;
  }

  .offers__decor {
    display: none;
  }

  .offers__title {
    font-size: 3.6rem;
  }

  .offers__grid {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
    width: 100%;
    margin: 2rem 0 3.2rem;
  }

  .offers__card {
    width: 100%;
    max-width: 36rem;
    height: auto;
    aspect-ratio: 368 / 720;
  }

  .offers__grid .offers__card .offers__card-title {
    top: 2.4rem;
    left: 1.6rem;
    right: 1.6rem;
    width: auto;
    transform: none;
    font-size: 2.4rem;
  }
}
