/* =========================================
 *  1. VARIABLES & THEME (Tokens)
 *  ========================================= */
:root {
  --accent: #ff6233;

  /* Light Theme */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f6f7f9;
  --text: #111319;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow-1: 0 10px 26px rgba(0,0,0,.06);

  --radius: 16px;
}

/* Dark Theme */
:root[data-theme="dark"] {
  --bg: #0f131b;
  --surface: #0b0e14;
  --surface-2: #0f141e;
  --text: #e8edf5;
  --muted: #9aa4b2;
  --border: #1c2230;
  --shadow-1: 0 16px 36px rgba(0,0,0,.45);
}

/* =========================================
 *  2. BASE & LAYOUT
 *  ========================================= */

body.static-page {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--surface-2);
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
}

/* Conteneur principal pour gérer les marges latérales */
.page-wrapper {
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Carte centrale */
.static-accessibilite .page {
  max-width: 900px;
  margin: clamp(2.5rem, 6vw, 4rem) auto;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}

/* =========================================
 *  3. CONTENU SPÉCIFIQUE
 *  ========================================= */

/* Hero (Titre interne) */
.static-accessibilite .hero {
  text-align: left;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.static-accessibilite .hero h1 {
  margin: 0 0 .4rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.static-accessibilite .hero .chapo {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Contenu texte */
.static-accessibilite .content p {
  line-height: 1.7;
  margin: 0 0 .9rem;
  color: var(--muted);
}

.static-accessibilite .content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 2rem 0 1rem;
  color: var(--text);
}

.static-accessibilite .content ul {
  padding-left: 1.2rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.static-accessibilite .content li {
  margin-bottom: .5rem;
  line-height: 1.6;
}

/* Liens */
.static-accessibilite .content a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.static-accessibilite .content a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--text);
}
