    :root {
      --gd-night: #0A1024; --gd-night-2: #060A1B;
      --gd-blue: #1E3A5F; --gd-blue-soft: #E8ECF5;
      --gd-action: #4A6FE8; --gd-action-light: #6A6AF4; --gd-action-glow: rgba(106,106,244,0.5);
      --gd-ink: #0B1220; --gd-ink-soft: #3B4766;
      --gd-paper: #FFFFFF; --gd-canvas: #F6F7FB;
      --gd-line: #E6E9F2; --gd-line-soft: rgba(11,18,32,0.06);
      --gd-muted: #6B7591;
      --gd-ok: #1F7A4D; --gd-warn: #B8690B; --gd-err: #B53A2B;
      --gd-sans: 'Inter', system-ui, -apple-system, sans-serif;
      --gd-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body, h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; padding: 0; }
    ul, ol { list-style: none; padding: 0; }
    body {
      font-family: var(--gd-sans); color: var(--gd-ink); background: var(--gd-paper);
      line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    ::selection { background: var(--gd-action); color: #fff; }
    :focus-visible { outline: 2px solid var(--gd-action-light); outline-offset: 3px; border-radius: 4px; }

    /* ─── Nav ─── */
    .gd-nav {
      position: absolute; top: 0; left: 0; right: 0; z-index: 10;
      padding: 22px 48px; display: flex; justify-content: space-between; align-items: center; gap: 24px;
    }
    .gd-logo { display: inline-flex; align-items: center; color: #fff; }
    .gd-logo img, .gd-logo svg { height: 26px; width: auto; }
    .gd-nav__links { display: flex; gap: 32px; font-size: 13.5px; font-weight: 500; }
    .gd-nav__links a { color: rgba(255,255,255,0.7); transition: color .15s; }
    .gd-nav__links a:hover, .gd-nav__links a[aria-current="page"] { color: #fff; }
    .gd-nav__cta { display: flex; gap: 10px; }

    .gd-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 10px 18px; font-size: 13px; font-weight: 600;
      border-radius: 8px; border: 1px solid transparent; cursor: pointer; white-space: nowrap;
      transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
    }
    .gd-btn:hover { transform: translateY(-1px); }
    .gd-btn--primary { background: var(--gd-action); color: #fff; box-shadow: 0 0 24px var(--gd-action-glow); }
    .gd-btn--primary:hover { box-shadow: 0 0 36px var(--gd-action-glow), 0 8px 20px rgba(0,0,0,0.25); }
    .gd-btn--ghost { background: rgba(255,255,255,0.04); color: #fff; border-color: rgba(255,255,255,0.18); backdrop-filter: blur(12px); }
    .gd-btn--ghost:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.3); }
    .gd-btn--lg { padding: 16px 26px; font-size: 15px; border-radius: 10px; }
    .gd-btn__arrow { width: 16px; height: 16px; }

    .gd-burger {
      display: none; width: 42px; height: 42px; padding: 0;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.18);
      border-radius: 10px; cursor: pointer; position: relative; backdrop-filter: blur(12px);
    }
    .gd-burger span { display: block; position: absolute; left: 11px; right: 11px; height: 1.5px; background: #fff; border-radius: 999px; transition: transform .28s, opacity .2s, top .28s; }
    .gd-burger span:nth-child(1) { top: 14px; }
    .gd-burger span:nth-child(2) { top: 20px; }
    .gd-burger span:nth-child(3) { top: 26px; }
    .gd-burger[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
    .gd-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .gd-burger[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }
    .gd-mobile-menu {
      position: fixed; inset: 0; z-index: 40;
      background: rgba(10,16,36,0.96); backdrop-filter: blur(24px);
      display: flex; flex-direction: column; padding: 100px 28px 36px;
      opacity: 0; transform: translateY(-14px); pointer-events: none; visibility: hidden;
      transition: opacity .28s, transform .28s, visibility .28s;
    }
    .gd-mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; visibility: visible; }
    .gd-mobile-menu a { color: #fff; font-size: 22px; font-weight: 500; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .gd-mobile-menu__ctas { margin-top: auto; display: flex; flex-direction: column; gap: 16px; padding-top: 32px; }
    .gd-mobile-menu__ctas .gd-btn { justify-content: center; padding: 15px 22px; font-size: 15px; border-bottom: none; }
    .gd-mobile-menu__close { position: absolute; top: 18px; right: 24px; width: 42px; height: 42px; padding: 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; cursor: pointer; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
    .gd-mobile-menu__close svg { width: 16px; height: 16px; }
    body.is-menu-open { overflow: hidden; }

    @media (max-width: 900px) {
      .gd-nav { padding: 18px 24px; }
      .gd-nav__links, .gd-nav__cta { display: none; }
      .gd-burger { display: inline-flex; align-items: center; justify-content: center; }
    }

    /* ─── Article hero (nuit) ─── */
    .gd-art-hero {
      position: relative;
      padding: 140px 48px 90px;
      background: var(--gd-night);
      color: #fff;
      overflow: hidden;
    }
    .gd-art-hero__grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 90% 75% at 50% 50%, black 0%, transparent 85%);
      -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 50%, black 0%, transparent 85%);
    }
    .gd-art-hero__beam {
      position: absolute; top: 0; left: 34%;
      width: 1px; height: 60%;
      background: linear-gradient(to bottom, transparent, rgba(106,106,244,0.4), transparent);
      animation: gd-beam 9s ease-in-out infinite;
    }
    @keyframes gd-beam {
      0%, 100% { opacity: 0.2; transform: scaleY(0.85); }
      50%      { opacity: 0.75; transform: scaleY(1.15); }
    }
    .gd-art-hero__halo {
      position: absolute; top: 48%; right: 8%; width: 600px; height: 600px;
      transform: translate(0, -50%);
      background: radial-gradient(circle, rgba(106,106,244,0.22) 0%, transparent 62%);
      filter: blur(24px);
    }
    .gd-art-hero__inner { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; }
    .gd-art-hero__crumbs {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--gd-mono); font-size: 11px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 24px;
    }
    .gd-art-hero__crumbs a { color: rgba(255,255,255,0.5); transition: color .15s; }
    .gd-art-hero__crumbs a:hover { color: #fff; }
    .gd-art-hero__crumbs-sep { opacity: 0.4; }
    .gd-art-hero__tags { display: flex; gap: 10px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
    .gd-tag {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      font-family: var(--gd-mono); font-size: 11px;
      letter-spacing: 0.12em; text-transform: uppercase;
    }
    .gd-tag--action {
      background: rgba(106,106,244,0.1);
      border: 1px solid rgba(106,106,244,0.3);
      color: var(--gd-action-light);
    }
    .gd-tag--action::before {
      content: ''; width: 5px; height: 5px; border-radius: 999px;
      background: var(--gd-action-light); box-shadow: 0 0 8px var(--gd-action-light);
    }
    .gd-tag--ghost {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.14);
      color: rgba(255,255,255,0.6);
    }
    .gd-art-hero__h1 {
      font-family: var(--gd-sans);
      font-size: clamp(34px, 4.5vw, 56px);
      font-weight: 500; letter-spacing: -0.028em; line-height: 1.08;
      color: #fff;
      max-width: 860px;
      margin-bottom: 22px;
    }
    .gd-art-hero__h1-soft { color: rgba(255,255,255,0.55); }
    .gd-art-hero__lede {
      font-size: 17px; color: rgba(255,255,255,0.7);
      line-height: 1.65; max-width: 720px;
    }
    .gd-art-hero__author {
      display: flex; align-items: center; gap: 16px;
      margin-top: 40px; padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .gd-art-hero__avatar {
      width: 44px; height: 44px; border-radius: 999px;
      background: linear-gradient(135deg, var(--gd-action) 0%, var(--gd-blue) 100%);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 700; font-size: 15px;
      box-shadow: 0 0 24px rgba(106,106,244,0.4);
    }
    .gd-art-hero__who { font-size: 14px; font-weight: 600; color: #fff; }
    .gd-art-hero__date {
      font-family: var(--gd-mono); font-size: 12px;
      color: rgba(255,255,255,0.5); margin-top: 2px;
    }

    /* ─── Corps article ─── */
    .gd-art-body {
      background: var(--gd-paper);
      padding: 72px 48px 96px;
    }
    .gd-art-body__grid {
      max-width: 1120px; margin: 0 auto;
      display: grid; grid-template-columns: 240px 1fr;
      gap: 72px;
    }
    @media (max-width: 900px) {
      .gd-art-body { padding: 56px 24px 72px; }
      .gd-art-body__grid { grid-template-columns: 1fr; gap: 36px; }
    }

    .gd-toc { position: sticky; top: 32px; align-self: start; }
    .gd-toc__title {
      font-family: var(--gd-mono); font-size: 10px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.14em;
      color: var(--gd-action); margin-bottom: 18px;
    }
    .gd-toc__list {
      display: grid; gap: 4px;
      border-left: 1px solid var(--gd-line);
    }
    .gd-toc__link {
      font-size: 13px; color: var(--gd-ink-soft);
      padding: 6px 16px; cursor: pointer;
      border-left: 2px solid transparent;
      margin-left: -1px;
      line-height: 1.45;
      transition: color .15s, border-color .15s;
    }
    .gd-toc__link:hover { color: var(--gd-ink); }
    .gd-toc__link.is-active {
      color: var(--gd-ink);
      border-left-color: var(--gd-action);
      font-weight: 600;
    }

    .gd-toc__box {
      margin-top: 36px;
      padding: 20px;
      background: var(--gd-canvas);
      border: 1px solid var(--gd-line);
      border-radius: 12px;
    }
    .gd-toc__box-title {
      font-family: var(--gd-mono); font-size: 10px;
      color: var(--gd-muted); letter-spacing: 0.14em;
      text-transform: uppercase; margin-bottom: 10px;
    }
    .gd-toc__box-text {
      font-size: 13px; color: var(--gd-ink-soft); line-height: 1.6;
    }
    @media (max-width: 900px) {
      .gd-toc { position: static; }
      .gd-toc__box { margin-top: 24px; }
    }

    /* ─── Contenu prose ─── */
    .gd-prose {
      font-size: 16.5px; line-height: 1.75; color: var(--gd-ink-soft);
      max-width: 720px;
    }
    .gd-prose__lede {
      font-size: 19px; color: var(--gd-ink); line-height: 1.55;
      margin-bottom: 8px;
    }
    .gd-prose h2 {
      font-family: var(--gd-sans); font-size: clamp(24px, 2.6vw, 30px);
      font-weight: 600; letter-spacing: -0.018em;
      color: var(--gd-ink);
      margin: 56px 0 18px;
      scroll-margin-top: 32px;
    }
    .gd-prose h3 {
      font-family: var(--gd-sans); font-size: 20px; font-weight: 600;
      letter-spacing: -0.01em; color: var(--gd-ink);
      margin: 32px 0 12px;
    }
    .gd-prose p { margin: 0 0 18px; }
    .gd-prose p:last-child { margin-bottom: 0; }
    .gd-prose strong { color: var(--gd-ink); font-weight: 600; }
    .gd-prose a {
      color: var(--gd-action);
      border-bottom: 1px solid rgba(74,111,232,0.4);
      transition: color .15s, border-color .15s;
    }
    .gd-prose a:hover { color: var(--gd-action-light); border-bottom-color: var(--gd-action-light); }
    .gd-prose ul { margin: 0 0 22px; padding-left: 0; }
    .gd-prose ul li {
      position: relative;
      padding-left: 26px;
      margin-bottom: 10px;
      font-size: 16px;
    }
    .gd-prose ul li::before {
      content: '';
      position: absolute; left: 0; top: 11px;
      width: 14px; height: 1.5px;
      background: var(--gd-action);
    }
    .gd-prose ol {
      counter-reset: ol;
      margin: 0 0 22px; padding: 0;
    }
    .gd-prose ol li {
      counter-increment: ol;
      position: relative;
      padding-left: 36px;
      margin-bottom: 10px;
      font-size: 16px;
    }
    .gd-prose ol li::before {
      content: counter(ol, decimal-leading-zero);
      position: absolute; left: 0; top: 0;
      font-family: var(--gd-mono); font-size: 12px;
      color: var(--gd-action); font-weight: 700;
      letter-spacing: 0.04em;
    }

    /* Callout */
    .gd-callout {
      margin: 32px 0;
      padding: 22px 26px;
      background: linear-gradient(135deg, rgba(106,106,244,0.06) 0%, rgba(106,106,244,0.02) 100%);
      border: 1px solid rgba(106,106,244,0.2);
      border-radius: 12px;
      display: grid; grid-template-columns: auto 1fr;
      gap: 18px; align-items: flex-start;
    }
    .gd-callout__icon {
      width: 36px; height: 36px; border-radius: 8px;
      background: var(--gd-action); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 17px;
      box-shadow: 0 0 16px rgba(106,106,244,0.35);
      flex-shrink: 0;
    }
    .gd-callout__label {
      font-family: var(--gd-mono); font-size: 10px;
      color: var(--gd-action);
      letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 6px;
    }
    .gd-callout__text {
      font-size: 15px; color: var(--gd-ink); line-height: 1.6;
    }
    .gd-callout--warn { background: linear-gradient(135deg, rgba(184,105,11,0.06) 0%, rgba(184,105,11,0.02) 100%); border-color: rgba(184,105,11,0.22); }
    .gd-callout--warn .gd-callout__icon { background: var(--gd-warn); box-shadow: 0 0 16px rgba(184,105,11,0.3); }
    .gd-callout--warn .gd-callout__label { color: var(--gd-warn); }

    /* Blockquote jurisprudence */
    .gd-quote {
      margin: 36px 0;
      padding: 28px 32px;
      border-left: 3px solid var(--gd-action);
      background: var(--gd-canvas);
      border-radius: 0 12px 12px 0;
    }
    .gd-quote__label {
      font-family: var(--gd-mono); font-size: 10px;
      color: var(--gd-action);
      letter-spacing: 0.14em; text-transform: uppercase;
      margin-bottom: 14px;
    }
    .gd-quote__text {
      font-family: var(--gd-sans);
      font-size: 19px; color: var(--gd-ink); line-height: 1.55;
      font-weight: 500; letter-spacing: -0.008em;
    }
    .gd-quote__cite {
      font-family: var(--gd-mono); font-size: 12px;
      color: var(--gd-muted); margin-top: 14px;
    }

    /* Table */
    .gd-table-wrap {
      margin: 28px 0;
      border: 1px solid var(--gd-line);
      border-radius: 12px;
      overflow: hidden;
      background: var(--gd-paper);
    }
    .gd-table { width: 100%; border-collapse: collapse; }
    .gd-table th, .gd-table td { padding: 14px 18px; text-align: left; border-top: 1px solid var(--gd-line); }
    .gd-table th {
      background: var(--gd-canvas); border-top: none;
      font-family: var(--gd-mono); font-size: 10.5px;
      color: var(--gd-muted); letter-spacing: 0.1em;
      text-transform: uppercase; font-weight: 600;
    }
    .gd-table td { font-size: 14px; color: var(--gd-ink); }
    .gd-table td.gd-table__num {
      font-family: var(--gd-mono); font-weight: 600;
      color: var(--gd-action); font-size: 13.5px;
    }
    .gd-table tr:last-child td { border-bottom: none; }

    /* Formule inline */
    .gd-formula {
      display: inline-block;
      font-family: var(--gd-mono); font-size: 14px;
      padding: 2px 8px;
      background: rgba(106,106,244,0.08);
      border: 1px solid rgba(106,106,244,0.2);
      border-radius: 6px;
      color: var(--gd-action);
      letter-spacing: -0.005em;
    }
    .gd-formula--block {
      display: block;
      text-align: center;
      padding: 18px 24px;
      font-size: 18px;
      margin: 24px 0;
    }

    /* ─── FAQ ─── */
    .gd-art-faq {
      padding: 80px 48px;
      background: var(--gd-canvas);
      position: relative;
    }
    .gd-art-faq__inner { max-width: 820px; margin: 0 auto; }
    .gd-art-faq__eyebrow-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .gd-art-faq__line { flex: 0 0 32px; height: 1px; background: var(--gd-action); }
    .gd-eyebrow {
      font-family: var(--gd-mono); font-size: 12px;
      color: var(--gd-action); letter-spacing: 0.14em; text-transform: uppercase;
    }
    .gd-art-faq__h2 {
      font-family: var(--gd-sans); font-size: clamp(28px, 3.2vw, 38px);
      font-weight: 500; letter-spacing: -0.025em; line-height: 1.1;
      color: var(--gd-ink); margin-bottom: 36px;
    }
    .gd-faq-item { border-top: 1px solid var(--gd-line); }
    .gd-faq-item:last-child { border-bottom: 1px solid var(--gd-line); }
    .gd-faq-item > summary {
      padding: 22px 0; cursor: pointer;
      list-style: none;
      display: flex; justify-content: space-between; align-items: center; gap: 20px;
      font-size: 16.5px; font-weight: 600; color: var(--gd-ink);
      letter-spacing: -0.01em; transition: color .15s;
    }
    .gd-faq-item > summary::-webkit-details-marker { display: none; }
    .gd-faq-item > summary:hover { color: var(--gd-action); }
    .gd-faq-icon {
      width: 26px; height: 26px;
      border: 1px solid var(--gd-line); border-radius: 999px;
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--gd-action); flex-shrink: 0;
      transition: transform .3s, background .3s, border-color .3s, color .3s;
    }
    .gd-faq-icon svg { width: 11px; height: 11px; }
    .gd-faq-item[open] > summary .gd-faq-icon {
      transform: rotate(45deg);
      background: var(--gd-action); color: #fff; border-color: var(--gd-action);
    }
    .gd-faq-answer {
      padding: 0 0 22px;
      font-size: 15px; color: var(--gd-ink-soft); line-height: 1.7;
    }

    /* ─── Related ─── */
    .gd-related { padding: 80px 48px; background: var(--gd-paper); }
    .gd-related__inner { max-width: 1180px; margin: 0 auto; }
    .gd-related__head { margin-bottom: 40px; }
    .gd-related__grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    @media (max-width: 820px) { .gd-related__grid { grid-template-columns: 1fr; } }
    .gd-rel-card {
      display: flex; flex-direction: column;
      background: var(--gd-paper);
      border: 1px solid var(--gd-line);
      border-radius: 14px; overflow: hidden;
      transition: transform .25s, border-color .25s, box-shadow .25s;
    }
    .gd-rel-card:hover {
      transform: translateY(-3px);
      border-color: rgba(74,111,232,0.3);
      box-shadow: 0 20px 40px -20px rgba(17,32,74,0.15);
    }
    .gd-rel-card__visual {
      aspect-ratio: 16 / 9;
      background: linear-gradient(165deg, var(--gd-night) 0%, var(--gd-blue) 100%);
      position: relative; overflow: hidden;
    }
    .gd-rel-card__visual::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .gd-rel-card__glyph {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--gd-mono); font-size: 44px; font-weight: 700;
      color: rgba(255,255,255,0.1); letter-spacing: -0.03em;
    }
    .gd-rel-card__cat {
      position: absolute; top: 14px; left: 14px;
      padding: 4px 10px;
      background: rgba(10,16,36,0.7);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 999px;
      font-family: var(--gd-mono); font-size: 10px; font-weight: 600;
      color: var(--gd-action-light);
      letter-spacing: 0.08em; text-transform: uppercase;
      backdrop-filter: blur(10px);
    }
    .gd-rel-card__body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
    .gd-rel-card__meta {
      font-family: var(--gd-mono); font-size: 10.5px;
      color: var(--gd-muted); margin-bottom: 10px;
      letter-spacing: 0.04em;
    }
    .gd-rel-card__t {
      font-size: 16px; font-weight: 600; color: var(--gd-ink);
      letter-spacing: -0.01em; line-height: 1.35;
    }

    /* ─── CTA RDV ─── */
    .gd-cta-bloc {
      padding: 96px 48px;
      background: var(--gd-night);
      color: #fff;
      position: relative; overflow: hidden;
      text-align: center;
    }
    .gd-cta-bloc__grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 80%);
    }
    .gd-cta-bloc__halo {
      position: absolute; bottom: -15%; left: 50%;
      transform: translateX(-50%);
      width: 680px; height: 400px;
      background: radial-gradient(ellipse at bottom, rgba(106,106,244,0.3) 0%, transparent 65%);
      filter: blur(30px); pointer-events: none;
    }
    .gd-cta-bloc__inner { position: relative; max-width: 720px; margin: 0 auto; }
    .gd-cta-bloc__h2 {
      font-family: var(--gd-sans); font-size: clamp(32px, 4vw, 48px);
      font-weight: 500; letter-spacing: -0.028em; line-height: 1.08;
      color: #fff; margin: 18px 0 22px;
    }
    .gd-cta-bloc__sub {
      font-size: 16px; color: rgba(255,255,255,0.68);
      line-height: 1.6; margin-bottom: 34px; max-width: 540px; margin-left: auto; margin-right: auto;
    }
    .gd-cta-bloc__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* ─── Footer (identique homepage) ─── */
    .gd-footer {
      padding: 72px 48px 36px;
      background: var(--gd-night-2);
      border-top: 1px solid rgba(255,255,255,0.08);
      color: #fff;
    }
    .gd-footer__grid {
      max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
    }
    .gd-footer__about p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-top: 22px; max-width: 300px; }
    .gd-footer__col-title {
      font-family: var(--gd-mono); font-size: 11px; font-weight: 700;
      color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
    }
    .gd-footer__col a { display: block; font-size: 13px; color: rgba(255,255,255,0.62); margin-bottom: 10px; transition: color .15s; }
    .gd-footer__col a:hover { color: var(--gd-action-light); }
    .gd-footer__bottom {
      max-width: 1280px; margin: 48px auto 0;
      padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
      font-size: 12px; color: rgba(255,255,255,0.4);
    }
    .gd-footer__version { font-family: var(--gd-mono); }
    @media (max-width: 720px) {
      .gd-footer { padding: 56px 24px 28px; }
      .gd-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .gd-footer__about { grid-column: 1 / -1; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      html { scroll-behavior: auto; }
    }

/* ═══════════════════════════════════════════════════════════════════
   Garel Decision · Blocs additionnels (v2)
   ═══════════════════════════════════════════════════════════════════ */

/* H1-H6 dans la prose */
.gd-prose h1 { font-family: var(--gd-sans); font-size: clamp(28px, 3vw, 36px); font-weight: 700; letter-spacing: -0.025em; color: var(--gd-ink); margin: 64px 0 20px; }
.gd-prose h4 { font-family: var(--gd-sans); font-size: 17px; font-weight: 600; color: var(--gd-ink); margin: 28px 0 10px; letter-spacing: -0.005em; }
.gd-prose h5 { font-family: var(--gd-sans); font-size: 14px; font-weight: 700; color: var(--gd-ink); margin: 22px 0 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.gd-prose h6 { font-family: var(--gd-mono); font-size: 11.5px; font-weight: 700; color: var(--gd-muted); margin: 18px 0 6px; text-transform: uppercase; letter-spacing: 0.12em; }

/* Pull quote */
.gd-pullquote {
  margin: 36px 0;
  padding: 28px 32px;
  text-align: center;
  border-top: 1px solid var(--gd-line);
  border-bottom: 1px solid var(--gd-line);
  position: relative;
}
.gd-pullquote__mark {
  display: block;
  margin: 0 auto 14px;
  color: var(--gd-action);
  opacity: 0.6;
}
.gd-pullquote__text {
  font-family: var(--gd-sans);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.4;
  color: var(--gd-ink);
  margin: 0 auto;
  max-width: 720px;
}
.gd-pullquote__author {
  margin-top: 14px;
  font-family: var(--gd-mono);
  font-size: 12px;
  color: var(--gd-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Stats */
.gd-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
  padding: 28px;
  background: linear-gradient(165deg, var(--gd-canvas) 0%, #FFFFFF 100%);
  border: 1px solid var(--gd-line);
  border-radius: 14px;
}
.gd-stat { text-align: left; }
.gd-stat__value {
  font-family: var(--gd-mono);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gd-action);
  background: linear-gradient(135deg, #4A6FE8 0%, #6A6AF4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gd-stat__unit {
  font-size: 0.5em;
  margin-left: 6px;
  font-weight: 500;
  color: var(--gd-muted);
  -webkit-text-fill-color: var(--gd-muted);
  letter-spacing: 0;
}
.gd-stat__label {
  margin-top: 8px;
  font-family: var(--gd-sans);
  font-size: 13.5px;
  color: var(--gd-ink-soft);
  letter-spacing: 0;
  text-transform: none;
}

/* Process */
.gd-process {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 20px;
}
.gd-process__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: var(--gd-paper);
  border: 1px solid var(--gd-line);
  border-radius: 12px;
  position: relative;
}
.gd-process__step::before {
  content: ''; position: absolute; left: 41px; top: 60px; bottom: -20px;
  width: 1px; background: linear-gradient(to bottom, var(--gd-action), transparent);
  opacity: 0.4;
}
.gd-process__step:last-child::before { display: none; }
.gd-process__num {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(74,111,232,0.12);
  border: 1.5px solid var(--gd-action);
  color: var(--gd-action);
  font-family: var(--gd-mono); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gd-process__body { min-width: 0; }
.gd-process__title { font-family: var(--gd-sans); font-size: 18px; font-weight: 600; color: var(--gd-ink); margin: 0 0 6px; letter-spacing: -0.01em; }
.gd-process__text { font-size: 14.5px; color: var(--gd-ink-soft); margin: 0; line-height: 1.6; }

/* Comparison */
.gd-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
@media (max-width: 700px) { .gd-compare { grid-template-columns: 1fr; } }
.gd-compare__col {
  padding: 24px 26px;
  border-radius: 12px;
}
.gd-compare__col--ok {
  background: linear-gradient(135deg, rgba(95,209,144,0.06) 0%, rgba(95,209,144,0.02) 100%);
  border: 1px solid rgba(95,209,144,0.3);
}
.gd-compare__col--ko {
  background: linear-gradient(135deg, rgba(244,118,100,0.06) 0%, rgba(244,118,100,0.02) 100%);
  border: 1px solid rgba(244,118,100,0.3);
}
.gd-compare__head {
  font-family: var(--gd-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.gd-compare__col--ok .gd-compare__head { color: var(--gd-ok); }
.gd-compare__col--ko .gd-compare__head { color: var(--gd-err); }
.gd-compare__col ul { list-style: none; padding: 0; margin: 0; }
.gd-compare__col li {
  padding: 8px 0 8px 22px;
  font-size: 14.5px;
  color: var(--gd-ink);
  line-height: 1.55;
  position: relative;
}
.gd-compare__col--ok li::before {
  content: '✓'; position: absolute; left: 0; top: 7px;
  color: var(--gd-ok); font-weight: 700;
}
.gd-compare__col--ko li::before {
  content: '✗'; position: absolute; left: 0; top: 7px;
  color: var(--gd-err); font-weight: 700;
}

/* Definition */
.gd-definition {
  margin: 28px 0;
  padding: 18px 22px;
  background: var(--gd-canvas);
  border-left: 3px solid var(--gd-action);
  border-radius: 0 10px 10px 0;
}
.gd-definition__term {
  font-family: var(--gd-sans);
  font-size: 16px; font-weight: 700;
  color: var(--gd-action);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.gd-definition__term::after { content: ''; display: inline-block; width: 16px; height: 1px; background: currentColor; vertical-align: middle; margin-left: 8px; opacity: 0.4; }
.gd-definition__text {
  font-size: 14.5px; color: var(--gd-ink-soft);
  margin: 0; line-height: 1.65;
}

/* References */
.gd-references {
  margin: 40px 0 0;
  padding: 22px 26px;
  background: var(--gd-canvas);
  border: 1px solid var(--gd-line);
  border-radius: 12px;
}
.gd-references__title {
  font-family: var(--gd-mono); font-size: 11px; font-weight: 700;
  color: var(--gd-action); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.gd-references ol { padding-left: 22px; margin: 0; }
.gd-references li { font-size: 13.5px; color: var(--gd-ink-soft); padding: 4px 0; line-height: 1.55; }
.gd-references a { color: var(--gd-action); }

/* Divider */
.gd-divider {
  border: none; height: 1px; max-width: 80px;
  background: var(--gd-line);
  margin: 40px auto;
  position: relative;
}
.gd-divider::after {
  content: '·  ·  ·';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: var(--gd-mono); font-size: 14px;
  color: var(--gd-action);
  background: var(--gd-paper); padding: 0 10px;
  letter-spacing: 0.3em;
}

/* Embed */
.gd-embed {
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.gd-embed iframe {
  width: 100%; aspect-ratio: 16 / 9; border: none; display: block;
}
.gd-embed__caption {
  padding: 12px 16px;
  font-size: 13px; color: var(--gd-ink-soft);
  background: var(--gd-paper);
  border: 1px solid var(--gd-line);
  border-top: none;
  border-radius: 0 0 12px 12px;
}

/* Author note */
.gd-author-note {
  margin: 32px 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(74,111,232,0.04) 0%, rgba(74,111,232,0.01) 100%);
  border-left: 3px solid var(--gd-action);
  border-radius: 0 10px 10px 0;
}
.gd-author-note__by {
  font-family: var(--gd-mono); font-size: 11px; font-weight: 700;
  color: var(--gd-action); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.gd-author-note p {
  font-size: 14.5px; color: var(--gd-ink); margin: 0; line-height: 1.65;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   Quiz interactif (ton SEO kit)
   ═══════════════════════════════════════════════════════════════════ */
.gd-quiz {
  position: relative;
  margin: 48px 0;
  padding: 56px 32px;
  background: var(--gd-night);
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.gd-quiz::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 80%);
}
.gd-quiz::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(106,106,244,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.gd-quiz__head {
  position: relative; z-index: 2;
  text-align: center; max-width: 680px; margin: 0 auto 32px;
}
.gd-quiz__eyebrow {
  font-family: var(--gd-mono); font-size: 12px;
  color: var(--gd-action); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px; font-weight: 600;
}
.gd-quiz__title {
  font-family: var(--gd-sans);
  font-size: clamp(24px, 3vw, 36px); font-weight: 500;
  letter-spacing: -0.018em; line-height: 1.15;
  color: #fff; margin: 0;
}
.gd-quiz__card {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto;
  padding: 32px;
  background: linear-gradient(165deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
}
.gd-quiz__progress {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.gd-quiz__progress-text {
  font-family: var(--gd-mono); font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.gd-quiz__progress-bar {
  width: 160px; height: 3px; background: rgba(255,255,255,0.08);
  border-radius: 999px; overflow: hidden;
}
.gd-quiz__progress-fill {
  height: 100%; background: var(--gd-action);
  box-shadow: 0 0 8px rgba(106,106,244,0.6);
  transition: width .4s ease;
}
.gd-quiz__question {
  font-family: var(--gd-sans);
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.35;
  color: #fff; margin: 0 0 20px;
}
.gd-quiz__opts { display: grid; gap: 10px; }
.gd-quiz__opt {
  text-align: left; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  font-family: var(--gd-sans); font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  transition: border-color .15s, background .15s, color .15s;
}
.gd-quiz__opt:hover {
  border-color: var(--gd-action);
  background: rgba(106,106,244,0.08);
  color: #fff;
}
.gd-quiz__verdict-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--gd-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.gd-quiz__verdict-badge--ok {
  background: rgba(95,209,144,0.12);
  border: 1px solid rgba(95,209,144,0.35);
  color: #5FD190;
}
.gd-quiz__verdict-badge--warn {
  background: rgba(232,169,59,0.12);
  border: 1px solid rgba(232,169,59,0.35);
  color: #E8A93B;
}
.gd-quiz__verdict-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 999px;
  background: currentColor;
}
.gd-quiz__verdict-title {
  font-family: var(--gd-sans); font-size: 22px; font-weight: 500;
  color: #fff; letter-spacing: -0.012em;
  margin: 6px 0 12px;
}
.gd-quiz__verdict-text {
  font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.65;
  margin: 0 0 24px;
}
.gd-quiz__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.gd-quiz__cta {
  padding: 12px 22px;
  background: var(--gd-action); color: #fff; border: none; border-radius: 10px;
  font-family: var(--gd-sans); font-weight: 600; font-size: 14px;
  cursor: pointer; box-shadow: 0 0 24px rgba(106,106,244,0.5);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.gd-quiz__reset {
  padding: 12px 22px;
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
  font-family: var(--gd-sans); font-weight: 600; font-size: 14px;
  cursor: pointer;
}

/* Compare table (style SEO kit) */
.gd-comptable__title {
  font-family: var(--gd-sans); font-size: 22px; font-weight: 600;
  color: var(--gd-ink); margin: 32px 0 16px; letter-spacing: -0.015em;
}
.gd-comptable-wrap {
  margin: 24px 0;
  border: 1px solid var(--gd-line); border-radius: 14px; overflow: hidden;
  background: var(--gd-paper);
}
.gd-comptable { width: 100%; border-collapse: collapse; font-family: var(--gd-sans); }
.gd-comptable thead tr { background: var(--gd-canvas); }
.gd-comptable th {
  text-align: left; padding: 14px 18px;
  font-family: var(--gd-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gd-muted);
  border-bottom: 1px solid var(--gd-line);
}
.gd-comptable td {
  padding: 16px 18px;
  font-size: 14px; color: var(--gd-ink-soft);
  border-bottom: 1px solid var(--gd-line-soft);
}
.gd-comptable tr:last-child td { border-bottom: none; }
.gd-comptable__lead { font-weight: 600; color: var(--gd-ink); }
.gd-comptable__tone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px; border-radius: 999px;
  font-family: var(--gd-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.gd-comptable__tone-dot {
  width: 5px; height: 5px; border-radius: 999px; background: currentColor;
}
.gd-comptable__tone--ok   { background: rgba(31,122,77,0.1);  color: var(--gd-ok); }
.gd-comptable__tone--warn { background: rgba(184,105,11,0.1); color: var(--gd-warn); }
.gd-comptable__tone--err  { background: rgba(181,58,43,0.1);  color: var(--gd-err); }
.gd-comptable__tone--neu  { background: rgba(107,117,145,0.1); color: var(--gd-muted); }

/* Card cover image (alternative au glyphe) */
.gd-card__visual-cover {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.gd-card__visual-cover ~ .gd-card__cat,
.gd-card__visual-cover ~ .gd-card__visual-glyph { z-index: 2; }
.gd-card__visual-cover + * .gd-card__visual-grid { display: none; }

/* ─── Override des règles .gd-prose qui cassent le quiz ─── */
.gd-quiz .gd-quiz__title { color: #fff !important; margin: 0 !important; font-size: clamp(24px, 3vw, 36px); font-weight: 500; }
.gd-quiz .gd-quiz__eyebrow { color: var(--gd-action) !important; }
.gd-quiz .gd-quiz__question { color: #fff !important; margin: 0 0 20px !important; }
.gd-quiz .gd-quiz__verdict-title { color: #fff !important; margin: 6px 0 12px !important; }
.gd-quiz .gd-quiz__verdict-text { color: rgba(255,255,255,0.7) !important; margin: 0 0 24px !important; }
.gd-quiz .gd-quiz__opt { color: rgba(255,255,255,0.85) !important; }
.gd-quiz .gd-quiz__opt:hover { color: #fff !important; }

/* CTA bouton à l'intérieur du quiz : annule les overrides .gd-prose a */
.gd-quiz a.gd-quiz__cta {
  color: #fff !important;
  border-bottom: none !important;
  background: var(--gd-action) !important;
}
.gd-quiz a.gd-quiz__cta:hover { color: #fff !important; opacity: 0.92; }
.gd-quiz button.gd-quiz__reset { color: rgba(255,255,255,0.7) !important; }

/* CTA bouton dans .gd-prose : annule TOUS les overrides .gd-prose a (couleur, hover, visited, border) */
.gd-prose a.gd-btn,
.gd-prose a.gd-btn--primary,
.gd-prose a.gd-btn--primary:link,
.gd-prose a.gd-btn--primary:visited {
  color: #fff !important;
  border-bottom: none !important;
  text-decoration: none !important;
  background: var(--gd-action) !important;
  box-shadow: 0 0 24px var(--gd-action-glow) !important;
}
.gd-prose a.gd-btn:hover,
.gd-prose a.gd-btn--primary:hover {
  color: #fff !important;
  border-bottom: none !important;
  background: var(--gd-action) !important;
  box-shadow: 0 0 36px var(--gd-action-glow), 0 8px 20px rgba(0,0,0,0.25) !important;
  opacity: 0.95;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (< 768px) et Tablette (< 900px)
   ═══════════════════════════════════════════════════════════ */
/* Empêche les enfants des grilles flex/grid de forcer leur min-content
   (sinon les tables avec min-width font déborder le parent) */
.gd-art-body__grid, .gd-art-body__grid > *, .gd-prose, .gd-prose > * { min-width: 0; }
html, body { overflow-x: hidden; }

@media (max-width: 900px) {
  .gd-art-hero { padding: 110px 22px 70px; }
  .gd-art-hero__h1 { font-size: clamp(28px, 7vw, 40px); }
  .gd-art-hero__lede { font-size: 15.5px; }
  .gd-art-hero__halo { width: 360px; height: 360px; right: -10%; }

  .gd-prose { font-size: 15.5px; line-height: 1.7; }
  .gd-prose h2 { font-size: clamp(22px, 5vw, 28px); margin-top: 40px; }
  .gd-prose h3 { font-size: clamp(18px, 4vw, 22px); }

  /* Tableaux : scroll horizontal */
  .gd-table-wrap, .gd-comptable-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -22px; margin-right: -22px;
    padding: 0 22px;
  }
  .gd-table, .gd-comptable { min-width: 560px; font-size: 13.5px; }

  /* Stats : 2 colonnes, plus petit */
  .gd-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px; padding: 20px;
  }
  .gd-stat__value { font-size: clamp(28px, 7vw, 40px); }
  .gd-stat__label { font-size: 12.5px; }

  /* Process : numéros plus petits */
  .gd-process__step { gap: 16px; }
  .gd-process__num { width: 40px; height: 40px; font-size: 14px; }
  .gd-process__title { font-size: 16px; }
  .gd-process__text { font-size: 14px; }

  /* Callouts : padding réduit */
  .gd-callout { padding: 18px 18px; gap: 14px; }
  .gd-callout__icon { width: 32px; height: 32px; font-size: 16px; }

  /* Quote / pull-quote */
  .gd-quote, .gd-pullquote { padding: 22px 20px; }
  .gd-pullquote__text { font-size: 18px; }

  /* Boutons CTA dans la prose */
  .gd-prose a.gd-btn,
  .gd-prose a.gd-btn--primary {
    display: flex; width: 100%; justify-content: center;
    padding: 14px 20px; font-size: 14.5px;
  }

  /* Quiz */
  .gd-quiz { padding: 28px 20px; }
  .gd-quiz__title { font-size: 18px !important; }
  .gd-quiz__card { padding: 18px 16px; }

  /* Definition */
  .gd-definition { padding: 18px 20px; }
  .gd-definition__term { font-size: 14px; }

  /* References */
  .gd-references { padding: 22px 20px; }

  /* Stats / process / quiz : marges externes raisonnables */
  .gd-prose > * { max-width: 100%; }
}

@media (max-width: 560px) {
  .gd-art-hero { padding: 90px 18px 56px; }
  .gd-art-body { padding: 40px 18px 60px !important; }

  .gd-prose { font-size: 15px; }

  /* Stats : 1 colonne sur très petit écran */
  .gd-stats { grid-template-columns: 1fr; }

  /* Tableaux : scroll horizontal aligné sur 18px */
  .gd-table-wrap, .gd-comptable-wrap {
    margin-left: -18px; margin-right: -18px;
    padding: 0 18px;
  }

  /* Process : numéros encore plus compacts */
  .gd-process__step { gap: 12px; }
  .gd-process__num { width: 34px; height: 34px; font-size: 13px; }

  /* Tags hero */
  .gd-art-hero__tags { gap: 6px; }
  .gd-tag { font-size: 10px; padding: 5px 10px; }
}

/* ═══════════════════════════════════════════════════════════
   GLOSSARY INDEX — bloc index auto pour /lexique/
   ═══════════════════════════════════════════════════════════ */
.gd-glossary-index__intro {
  font-size: 16px; line-height: 1.7; color: var(--gd-ink-soft);
  margin: 0 0 28px;
}
.gd-glossary-index__toc {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 18px 22px; margin: 0 0 36px;
  background: var(--gd-canvas);
  border: 1px solid var(--gd-line);
  border-radius: 12px;
  font-family: var(--gd-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.gd-glossary-index__toc a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 32px; padding: 0 8px;
  border-radius: 6px;
  background: var(--gd-paper);
  border: 1px solid var(--gd-line);
  color: var(--gd-action);
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.gd-glossary-index__toc a:hover {
  background: var(--gd-action);
  color: #fff;
  border-color: var(--gd-action);
}
.gd-glossary-index__section {
  margin: 0 0 36px;
}
.gd-glossary-index__letter {
  font-family: var(--gd-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--gd-action);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gd-line);
}
.gd-glossary-index__list {
  list-style: none; padding: 0; margin: 0;
}
.gd-glossary-index__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--gd-line-soft);
  font-size: 15px;
  line-height: 1.55;
}
.gd-glossary-index__item:last-child { border-bottom: 0; }
.gd-glossary-index__item strong a {
  color: var(--gd-ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.gd-glossary-index__item strong a:hover {
  color: var(--gd-action);
  border-bottom-color: var(--gd-action);
}
.gd-glossary-index__lede {
  color: var(--gd-ink-soft);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════
   « À LIRE AUSSI » — bloc recommandations Supabase RAG
   ═══════════════════════════════════════════════════════════ */
.gd-related__head { margin-bottom: 36px; max-width: 720px; }
.gd-related__eyebrow {
  font-family: var(--gd-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gd-action);
  margin-bottom: 10px;
}
.gd-related__title {
  font-family: var(--gd-sans);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.15;
  color: var(--gd-ink);
  margin: 0;
}

.gd-related__card {
  display: flex; flex-direction: column;
  padding: 28px 26px;
  background: var(--gd-paper);
  border: 1px solid var(--gd-line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  min-height: 220px;
}
.gd-related__card:hover {
  transform: translateY(-2px);
  border-color: rgba(74,111,232,0.3);
  box-shadow: 0 8px 28px -12px rgba(11,18,32,0.18);
}
.gd-related__glyph {
  font-family: var(--gd-mono);
  font-size: 28px;
  color: var(--gd-action);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 500;
}
.gd-related__card-title {
  font-family: var(--gd-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.35;
  color: var(--gd-ink);
  margin: 0 0 10px;
}
.gd-related__lede {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--gd-ink-soft);
  margin: 0 0 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gd-related__meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gd-line);
  font-size: 12px;
  color: var(--gd-muted);
  letter-spacing: 0.01em;
}
.gd-related__rt { font-family: var(--gd-mono); }
.gd-related__cta {
  color: var(--gd-action);
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .gd-related { padding: 56px 22px !important; }
  .gd-related__card { padding: 22px 20px; min-height: 0; }
  .gd-related__glyph { font-size: 24px; margin-bottom: 14px; }
  .gd-related__card-title { font-size: 16px; }
  .gd-related__lede { font-size: 13px; }
}
@media (max-width: 560px) {
  .gd-related { padding: 40px 18px !important; }
}
