/* ═══════════════════════════════════════════════════
   MENTIONS LÉGALES — style calqué sur esallia.fr
   Jaune → Rouge (#e2001a)
═══════════════════════════════════════════════════ */

/* ── Hero ── */
.ml-hero {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(226,0,26,.12) 0%, transparent 70%),
    linear-gradient(180deg, #1c1c1c 0%, #0a0a0a 100%);
  padding: calc(var(--nav-h) + 72px) 24px 80px;
  text-align: center;
  position: relative;
}
.ml-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70'%3E%3Cpolygon points='30,2 58,17 58,53 30,68 2,53 2,17' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 70px;
  pointer-events: none;
}
.ml-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.ml-badge {
  display: inline-block;
  background: var(--red);
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: 100px;
}
.ml-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  letter-spacing: 3px;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}

/* ── Contenu ── */
.ml-content {
  background: #ffffff;
  padding: 72px 24px 96px;
}
.ml-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ── Sections ── */
.ml-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ml-section-title {
  font-family: 'Barlow', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #111111;
  padding-left: 16px;
  border-left: 4px solid var(--red);
  line-height: 1.2;
  margin-bottom: 6px;
}
.ml-section p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}
.ml-section p strong {
  font-weight: 700;
  color: #111111;
}
.ml-section a {
  color: #20505F;
  text-decoration: none;
  transition: color .2s;
}
.ml-section a:hover {
  color: var(--red);
  text-decoration: underline;
}

/* Champs à compléter */
.ml-placeholder {
  color: #aaaaaa;
  font-style: italic;
}

/* Date de mise à jour */
.ml-update {
  font-size: 13px;
  color: #aaaaaa;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid #ebebeb;
}


/* ── Responsive ── */
@media (max-width: 600px) {
  .ml-hero { padding: calc(var(--nav-h) + 40px) 20px 52px; }
  .ml-content { padding: 48px 20px 72px; }
  .ml-container { gap: 40px; }
}
