.offers-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
  margin-inline: auto;
}

.offer-sylvestre {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(165, 95, 48, .3);
  background: linear-gradient(125deg, #303131, #45413d);
  color: #fff;
  box-shadow: 0 18px 45px rgba(35, 31, 28, .16);
}

.offer-sylvestre__date {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e5cfad;
}

.offer-sylvestre__date strong {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: .8;
}

.offer-sylvestre__date span,
.offer-sylvestre__eyebrow {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.offer-sylvestre__eyebrow {
  color: #e5cfad;
}

.offer-sylvestre h2 {
  margin-top: 5px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.offer-sylvestre__nowrap {
  white-space: nowrap;
}

.offer-sylvestre p {
  color: rgba(255, 255, 255, .78);
}

.offer-sylvestre__rates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: .74rem;
}

.offer-sylvestre__rates b {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.offer-sylvestre .btn {
  white-space: nowrap;
}

@media (max-width: 820px) {
  .offer-sylvestre {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .offer-sylvestre .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .offers-list {
    grid-template-columns: 1fr;
  }

  .offer-sylvestre {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 22px;
  }

  .offer-sylvestre .btn {
    grid-column: auto;
    width: 100%;
    white-space: normal;
  }
}
