/* ── Liens visibles dans le contenu légal uniquement ── */
.page-content a { color: var(--orange); text-decoration: underline; }
.page-content a:hover { color: var(--brown); }

/* ── Page hero ── */
.page-hero {
  background: var(--brown);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}
.page-hero-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.2; margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 0.95rem; color: rgba(255,255,255,.65);
  max-width: 560px; margin: 0 auto;
}

/* ── Contenu ── */
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}
.legal-section {
  margin-bottom: 3rem;
}
.legal-section h2 {
  font-size: 1.1rem; font-weight: 900; color: var(--brown);
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange-bg);
}
.legal-section p {
  font-size: 0.97rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 0.9rem;
  text-align: justify; hyphens: auto; overflow-wrap: break-word;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  list-style: none;
  margin: 0.5rem 0 0.9rem 0;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.legal-section ul li {
  font-size: 0.97rem; color: var(--text-muted); line-height: 1.7;
  padding-left: 1.2rem; position: relative;
}
.legal-section ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}
.legal-section strong { color: var(--brown); }
.highlight-box {
  background: var(--orange-bg);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
  margin: 1rem 0;
  font-size: 0.93rem; color: var(--brown-md);
  line-height: 1.7;
  text-align: justify; hyphens: auto; overflow-wrap: break-word;
}
.highlight-box a { color: var(--orange); }
/* ── Responsive ── */
@media (max-width: 600px) {
  .page-content { padding: 2.5rem 1.2rem 4rem; }
}
