/* ============================================================
   SECTION DESTINATIONS / COUPS DE CŒUR  (findingsHeartHit)
   Bandeau sauge : intro (eyebrow + titre) à gauche, liste de
   destinations en grand Asul à droite.
   Figma desktop 779:1729  |  mobile 779:1230
============================================================ */
.section-destinations {
  background-color: #9f9a7c;
  padding: 40px 0;
}

.destinations-inner {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ---- Intro (eyebrow + titre) ----------------------------- */
.destinations-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.destinations-eyebrow {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  color: #ffffff;
}
.destinations-heading {
  font-family: 'Asul', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #615d48;
}

/* ---- Liste ----------------------------------------------- */
.destinations-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.destinations-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Asul', sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.26px;
  color: #ffffff;
  transition: color 0.18s ease;
}
.destinations-item:hover { color: #615d48; }

.destinations-item__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.destinations-item__chevron svg { display: block; }

/* ============================================================
   DESTINATIONS  – Tablette + Desktop (≥769px)
============================================================ */
@media (min-width: 769px) {
  .section-destinations { padding: 60px 0; }

  .destinations-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: min(1166px, calc(100% - 200px));
    margin: 0 auto;
    padding: 0;
  }

  .destinations-intro {
    width: 362px;
    flex-shrink: 0;
    gap: 24px;
  }

  .destinations-heading { font-size: 26px; line-height: 31px; }

  .destinations-list {
    width: 563px;
    flex-shrink: 0;
    gap: 20px;
  }

  /* Flèche placée juste à côté du nom (gap 20px), et non repoussée à
     l'extrême droite de la colonne : on abandonne le space-between hérité. */
  .destinations-item { font-size: 50px; line-height: 1; letter-spacing: normal; justify-content: flex-start; }

  /* Chevron masqué jusqu'au survol (desktop). */
  .destinations-item__chevron { opacity: 0; transition: opacity 0.18s ease; }
  .destinations-item:hover .destinations-item__chevron { opacity: 1; }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .destinations-inner { max-width: none; padding: 0 40px; }
  .destinations-intro { width: 40%; }
  .destinations-list { width: 55%; }
}
