/* ============================================================
   SECTION D'AUTRES VOYAGES SUR MESURE  (mobile-first)
============================================================ */
.section-suggestions {
  background-color: #efece9;
  padding: 40px 0;
}

.section-suggestions .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0;
}

/* Scroll wrapper */
.cards-scroll-wrap {
  width: 100%;
  overflow: visible;
}

/* ============================================================
   CARDS GRIDS  (mobile-first)
============================================================ */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  justify-content: center;
}

.cards-grid--3 > * {
  width: 100%;
  flex-shrink: 1;
}

/* Voyage card */
.voyage-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.voyage-card__image {
  width: 100%;
  height: 330px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #999;
}
.voyage-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.voyage-card__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #0f1b24;
}

/* Mobile: body-s and price use 15px (match body-m) */
.voyage-card .body-s {
  font-size: 15px;
  line-height: 24px;
}
.voyage-card .body-deca-r {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
}
.suggestion-card {
  background-color: #FFF!important;
}
/* ============================================================
   SUGGESTIONS  – Desktop
============================================================ */
@media (min-width: 769px) {
  .section-suggestions {
    padding: 60px 0 40px;
  }

  .section-suggestions .container {
    gap: 40px;
  }

  .cards-grid {
    justify-content: flex-start;
  }

  .section-more {
    padding: 40px 0;
  }

  .cards-grid--3 > * {
    width: calc((100% - 80px) / 3);
    flex-shrink: 0;
  }

  .voyage-card .body-s {
    font-size: 13px;
    line-height: 22px;
  }
  .voyage-card .body-deca-r {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
  }

  .voyage-card__image {
    height: 362px;
  }
}
