/* ============================================
   MENTIONS LÉGALES PAGE
   ============================================ */

.ml-hero {
  padding-top: 70px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.ml-hero .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.ml-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.ml-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ml-breadcrumb a:hover { color: var(--accent); }
.ml-breadcrumb span { color: var(--text-tertiary); }

.ml-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.ml-hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 0.5rem;
}

.ml-update {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* Main */
.ml-main {
  padding: 60px 0 80px;
  background: var(--bg-grey);
}

.ml-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* TOC */
.ml-toc {
  position: sticky;
  top: 90px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}

.ml-toc-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-tertiary);
  margin-bottom: 0.875rem;
}

.ml-toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ml-toc ul li a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1.4;
}

.ml-toc ul li a:hover {
  background: var(--accent-light);
  color: var(--accent);
}

/* Content */
.ml-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ml-section {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  margin-bottom: 1rem;
}

.ml-section:last-child {
  margin-bottom: 0;
}

.ml-section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.ml-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.ml-section p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.ml-section p:last-child {
  margin-bottom: 0;
}

.ml-section a {
  color: var(--accent);
  text-decoration: none;
}

.ml-section a:hover {
  text-decoration: underline;
}

.ml-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.ml-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.ml-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.ml-info-block {
  background: var(--bg-grey);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ml-info-block p {
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.65;
}

/* Footer link */
.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .ml-layout {
    grid-template-columns: 1fr;
  }

  .ml-toc {
    position: static;
  }
}

@media (max-width: 768px) {
  .ml-section {
    padding: 1.5rem;
  }

  .ml-hero h1 {
    font-size: 1.9rem;
  }
}
