/* ── PAGE HEADER COMPACT ── */
  .page-header { background: var(--violet); padding: 2.75rem 2rem; position: relative; overflow: hidden; }
  .page-header::before { content:''; position:absolute; inset:0; background-image: repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(251,238,9,0.05) 48px), repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(251,238,9,0.05) 48px); pointer-events:none; }
  .page-header-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
  .breadcrumb { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; }
  .breadcrumb a { color: rgba(251,238,9,0.8); text-decoration: none; }
  .page-header h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: var(--blanc); }
  .page-header-meta { margin-top: 0.7rem; font-size: 0.65rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ── CONTENT LAYOUT ── */
  .content-wrap { max-width: 780px; margin: 0 auto; padding: 4rem 2rem 5rem; display: grid; grid-template-columns: 200px 1fr; gap: 4rem; align-items: start; }

  /* ── TABLE OF CONTENTS ── */
  .toc { position: sticky; top: 72px; }
  .toc-label { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--violet); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--bord); }
  .toc-list { list-style: none; display: flex; flex-direction: column; }
  .toc-list li a {
    display: block; font-size: 0.7rem; color: #595959; text-decoration: none;
    padding: 0.35rem 0; border-left: 2px solid transparent;
    padding-left: 0.75rem; transition: color 0.15s, border-color 0.15s;
  }
  .toc-list li a:hover { color: var(--violet); border-left-color: var(--violet); }
  .toc-list li a.active { color: var(--violet); border-left-color: var(--violet); font-weight: 700; }
/* ── ARTICLE STYLES ── */

  .article-body {}

  .article-section { margin-bottom: 3rem; }
  .article-section:last-child { margin-bottom: 0; }

  .article-section h2 {
    font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
    color: var(--noir); margin-bottom: 1rem;
    padding-bottom: 0.6rem; border-bottom: 2px solid var(--noir);
    scroll-margin-top: 80px;
  }
  .article-section h3 {
    font-size: 0.88rem; font-weight: 700; color: var(--violet);
    margin-top: 1.25rem; margin-bottom: 0.5rem;
  }
  .article-section p {
    font-size: 0.88rem; line-height: 1.8; color: #3d3d3d;
    margin-bottom: 0.75rem;
  }
  .article-section p:last-child { margin-bottom: 0; }
  .article-section ul {
    margin: 0.5rem 0 0.75rem 1.25rem;
  }
  .article-section ul li {
    font-size: 0.88rem; line-height: 1.7; color: #3d3d3d; margin-bottom: 0.2rem;
  }
  .article-section a { color: var(--violet); text-decoration: underline; }
  .article-section a:hover { color: var(--noir); }

  /* HIGHLIGHT BOX */
  .info-box {
    background: var(--gris); border-left: 3px solid var(--violet);
    padding: 1.1rem 1.25rem; margin: 1rem 0;
  }
  .info-box p { font-size: 0.82rem; color: #3d3d3d; line-height: 1.7; }
  .info-box strong { color: var(--noir); }


  
  /* CONTACT BLOCK */
  .contact-block {
    background: var(--violet); padding: 2rem;
    margin-top: 3.5rem;
  }
  .contact-block h2 { font-size: 1.1rem; font-weight: 700; color: var(--blanc); margin-bottom: 1.25rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .contact-item {}
  .contact-item .ci-label { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--jaune); margin-bottom: 0.35rem; }
  .contact-item .ci-val { font-size: 0.85rem; color: var(--blanc); line-height: 1.5; }
  .contact-item .ci-val a { color: var(--blanc); text-decoration: none; }
  .contact-item .ci-val a:hover { color: var(--jaune); }