/* ============================================================
   DÉCOUVRIR & VIVRE — section partagée
   Crée l'envie de voyager avec des forfaits My VTC Go
   Utilisée sur les 4 pages : alentours + villes-luxembourg
   ============================================================ */

.dv-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.dv-head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.dv-head .eyebrow-label {
  letter-spacing: 0.1em;   /* override volontaire — reproduit le rendu actuel, à revoir en phase design */
  padding: 6px 16px;   /* override volontaire — reproduit le rendu actuel, à revoir en phase design */
  background: var(--accent-dim);   /* override volontaire — reproduit le rendu actuel, à revoir en phase design */
  border: 1px solid var(--accent-line);   /* override volontaire — reproduit le rendu actuel, à revoir en phase design */
  border-radius: var(--r-pill);   /* override volontaire — reproduit le rendu actuel, à revoir en phase design */
  margin-bottom: 18px;   /* override volontaire — reproduit le rendu actuel, à revoir en phase design */
}
.dv-head h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media (max-width: 700px) { .dv-head h2 { font-size: 1.55rem; } }
.dv-head p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
}
.dv-head p strong { color: var(--text-hi); font-weight: 600; }

/* ===== GRILLE DE DESTINATIONS ===== */
.dv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 780px) { .dv-grid { grid-template-columns: 1fr; } }

.dv-card {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.dv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-line);
}

.dv-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-line);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.dv-badge--saison {
  color: #B08624;
  background: #FBF6E8;
  border-color: #EFDFA6;
}
.dv-badge--exclusif {
  color: #C24630;
  background: #FDF2F0;
  border-color: #F5CFC8;
}
.dv-badge--unesco {
  color: #2563EB;
  background: #F0F7FF;
  border-color: #C6E2FF;
}

.dv-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-hi);
  line-height: 1.2;
  margin: 0;
}

.dv-credit {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-mid);
  padding: 10px 14px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 0;
}

.dv-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
}
.dv-desc strong { color: var(--text-hi); font-weight: 600; }

.dv-forfait {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dv-forfait-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.dv-forfait-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-hi);
}
.dv-forfait-inc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.dv-forfait-inc strong { color: var(--text-hi); }

/* ===== BLOC CTA APRÈS LA GRILLE ===== */
.dv-cta-band {
  margin-top: 48px;
  padding: 32px 32px;
  background: var(--white);
  border: 1px dashed var(--accent-line);
  border-radius: var(--r-xl);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.dv-cta-band h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-hi);
}
.dv-cta-band p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 22px;
}
.dv-cta-band .hero-cta-row {
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
