/* Page Nos offres */

.offers-page {
  max-width: 1180px;
  margin: 42px auto 56px;
  padding: 0 20px;
}

.offers-section {
  margin-top: 34px;
}

.offers-section-featured {
  margin-top: 0;
}

.offers-intro {
  width: 100%;
  margin: 0 0 34px;
  color: #171717;
}

.offers-intro h2 {
  display: block;
  width: auto;
  color: #171717;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 650;
  margin: 0 0 12px;
}

.offers-intro-text {
  color: #171717;
  font-family: 'Albert Sans', serif;
  font-size: 17px;
  line-height: 1.55;
}

.offers-intro-text p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 12px;
}

.offers-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.offers-heading h2 {
  display: block;
  width: auto;
  color: #171717;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 650;
  margin: 0;
}

.offers-heading-wallet {
  display: block;
}

.offers-heading-wallet h2 {
  margin-bottom: 10px;
}

.offers-heading-wallet p {
  max-width: 900px;
  color: #171717;
  font-family: 'Albert Sans', serif;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 8px;
}

.offers-eyebrow,
.offer-kicker {
  color: #a63d2f;
  font-family: 'Albert Sans', serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.offers-featured-grid,
.offers-grid {
  display: grid;
  gap: 18px;
}

.offers-featured-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offers-wallet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(29, 24, 21, .08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(48, 38, 31, .09);
}

.offer-card-featured {
  background: #171717;
  color: #fff;
}

.offer-card-wallet {
  background: #f7dedb;
  border-color: rgba(166, 61, 47, .16);
  box-shadow: 0 12px 28px rgba(166, 61, 47, .11);
}

.offer-card-image {
  height: 190px;
  background: #f4f0eb;
}

.offer-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.offer-card h2 {
  display: block;
  width: auto;
  color: #171717;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 12px;
}

.offer-card-featured h2 {
  color: #fff;
}

.offer-price {
  color: #a63d2f;
  font-family: 'Sofia Sans', serif;
  font-size: 25px;
  font-weight: 750;
  line-height: 1.15;
  margin: 0 0 14px;
}

.offer-card-featured .offer-price {
  color: #f2c8c2;
}

.offer-subtitle {
  color: #625b56;
  font-family: 'Albert Sans', serif;
  font-size: 15px;
  font-weight: 700;
  margin: -4px 0 14px;
}

.offer-card-featured .offer-subtitle {
  color: rgba(255,255,255,.78);
}

.offer-subtitle-top {
  color: #a63d2f;
  font-size: 13px;
  line-height: 1.35;
  margin: 0 0 4px;
}

.offer-richtext,
.offer-conditions {
  color: #3e3834;
  font-family: 'Albert Sans', serif;
  font-size: 15px;
  line-height: 1.5;
}

.offer-card-featured .offer-richtext,
.offer-card-featured .offer-conditions {
  color: rgba(255,255,255,.86);
}

.offer-richtext p,
.offer-conditions p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 10px;
}

.offer-richtext ul,
.offer-richtext ol,
.offer-conditions ul,
.offer-conditions ol {
  margin: 0 0 12px 18px;
  padding: 0;
}

.offer-richtext li,
.offer-conditions li {
  margin-bottom: 7px;
}

.offer-conditions {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  font-weight: 650;
}

.offer-conditions p {
  margin-bottom: 5px;
}

.offers-empty {
  padding: 34px;
  background: rgba(255,255,255,.65);
  border-radius: 8px;
  color: #5d5651;
  font-family: 'Albert Sans', serif;
  text-align: center;
}

@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offers-wallet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .offers-page {
    margin: 28px auto 38px;
    padding: 0 12px;
  }

  .offers-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .offers-heading h2 {
    font-size: 29px;
  }

  .offers-intro {
    margin-bottom: 28px;
  }

  .offers-intro h2 {
    font-size: 29px;
  }

  .offers-intro-text {
    font-size: 16px;
  }

  .offers-featured-grid,
  .offers-grid,
  .offers-wallet-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-body {
    padding: 20px;
  }

  .offer-card h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .offer-price {
    font-size: 22px;
  }
}
