/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES — Mentions légales & Politique de confidentialité
   ═══════════════════════════════════════════════════════════════ */

.legal {
  background-color: var(--off-white);
  padding: var(--spacing-2xl) 0;
}

.legal__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.legal__intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--spacing-xl);
}

/* ── Sections ─────────────────────────────────────────────────── */
.legal__section {
  margin-bottom: var(--spacing-2xl);
}

.legal__section:last-child {
  margin-bottom: 0;
}

.legal__section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--black);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 3px solid var(--red);
}

.legal__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.legal__text:last-child {
  margin-bottom: 0;
}

.legal__text a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.legal__text a:hover {
  text-decoration: underline;
}

/* ── Liste d'informations clé/valeur (identité éditeur, etc.) ───── */
.legal__info-list {
  list-style: none;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: var(--spacing-md);
}

.legal__info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.legal__info-row:last-child {
  border-bottom: none;
}

.legal__info-label {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.legal__info-value {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.legal__info-value a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.legal__info-value a:hover {
  text-decoration: underline;
}

/* ── Listes à puces (droits RGPD, données collectées, etc.) ──────── */
.legal__list {
  padding-left: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.legal__list li {
  margin-bottom: 0.4rem;
}

.legal__list li:last-child {
  margin-bottom: 0;
}

.legal__updated {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--spacing-xl);
  text-align: right;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 560px) {
  .legal__info-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .legal__section-title {
    font-size: 1.5rem;
  }
}
