/* ============================================================
   MENTION.CSS — Unlock Express (standalone, fond blanc)
   Direction : Clean Light · Accents Or & Navy
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:         #F5C518;
  --gold-light:   #FFD94A;
  --gold-dark:    #C9A000;
  --red:          #E63946;
  --navy:         #1A3A6B;
  --navy-light:   #2453A3;
  --black:        #0D0F14;
  --dark:         #161B27;
  --gray:         #6B7280;
  --silver:       #9CA3AF;
  --off-white:    #F7F8FA;
  --white:        #FFFFFF;
  --green:        #10B981;

  --bg:           #FFFFFF;
  --bg-alt:       #F7F8FA;
  --border:       #E5E7EB;
  --text:         #1a1f2e;
  --text-muted:   #6B7280;

  --radius-md:    12px;
  --radius-lg:    20px;

  --ease-out:     cubic-bezier(.22, 1, .36, 1);
  --transition:   all .32s var(--ease-out);

  --shadow-sm:    0 1px 6px rgba(0,0,0,.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,.09);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--roboto);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
ul { list-style: none; }

a { color: inherit; text-decoration: none; }


/* ============================================================
   LAYOUT PRINCIPAL
   ============================================================ */
.mentions-legales {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.4rem, 5vw, 2.5rem) clamp(3.5rem, 7vw, 6rem);
}

/* ============================================================
   HEADER
   ============================================================ */
.ml-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 2.4rem;
  position: relative;
}

.ml-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.ml-header h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 1rem;
}

.ml-intro {
  font-size: .93rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   BLOCS ARTICLES
   ============================================================ */
.ml-bloc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ml-bloc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,107,.03) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.ml-bloc:hover {
  border-left-color: var(--navy-light);
  border-color: rgba(26,58,107,.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ml-bloc:hover::before { opacity: 1; }

.ml-bloc h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .55rem;
}

/* carré doré devant chaque titre */
.ml-bloc h2::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
}

.ml-bloc p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: .5rem;
}
.ml-bloc p:last-child { margin-bottom: 0; }

.ml-bloc strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .ml-bloc { padding: 1.4rem 1.3rem; }
  .ml-bloc h2 { font-size: .93rem; }
}