/* =============================================================================
   Transcriptor by Belentia — vitrine v3.3, règles communes à toutes les pages
   (24/09/2026). Chargé après les feuilles de la maquette.
   Pages sans maquette propre : en-tête de page, colonne de lecture, cartes,
   formulaires, tout dans les jetons du kit (blanc, accent #2365EB en touches,
   filets #E6E8EE, rayons 14/10 px, pas d'ombre lourde, pas de filet latéral).
   ========================================================================== */
:root {
  --accent: #2365EB;
  --font-title: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color-scheme: light;
}
html, body { background: var(--canvas); }

/* Lien de navigation de la page courante. */
.nav__link[aria-current="page"], .more__panel a[aria-current="page"] { color: var(--accent); }
.mobile-panel nav a[aria-current="page"] { color: var(--accent); }

/* 24/09/2026 (contrôle) : en-tête identique sur toutes les pages, Blade comme React
   (components/shadcn-space/blocks/navbar-01/navbar.tsx). Dès 900 px, grille
   1fr / auto / 1fr : marque à gauche, liens centrés sur la page, action à droite. */
@media (min-width: 900px) {
  .nav__inner.nav--centered { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: var(--space-3); }
  .nav--centered .brand { justify-self: start; }
  .nav--centered .nav__links { display: flex; flex: none; justify-self: center; margin-left: 0; }
  .nav--centered .nav__actions { display: flex; justify-self: end; }
  .nav--centered .burger { display: none; }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .nav__inner.nav--centered { gap: var(--space-2); }
  .nav--centered .nav__links { gap: 12px; }
  .nav--centered .nav__link { font-size: 15px; }
}

/* ---------- En-tête de page (pages sans maquette propre) ---------- */
.v-head { padding-block: var(--space-8) var(--space-5); }
.v-head__inner { max-width: 760px; }
.v-head--center .v-head__inner { margin-inline: auto; text-align: center; }
.v-head__inner > * + * { margin-top: var(--space-2); }
.v-head .lead { color: var(--muted); }
.v-head .actions { margin-top: var(--space-4); }
.v-head--center .actions { justify-content: center; }
@media (max-width: 720px) { .v-head { padding-block: var(--space-6) var(--space-4); } }

/* ---------- Cartes à icône au trait ---------- */
.v-cards { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.v-card { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-4); background: var(--canvas); }
.v-card > * + * { margin-top: var(--space-1); }
.v-card h2, .v-card h3 { font-family: var(--font-title); font-size: 20px; line-height: 1.3; color: var(--ink); }
.v-card p { color: var(--text); line-height: 1.6; }
.v-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent); }
.v-card__icon svg { width: 22px; height: 22px; }
a.v-card { display: block; color: inherit; text-decoration: none; transition: border-color var(--t) var(--ease); }
a.v-card:hover { border-color: var(--accent); }

/* ---------- Colonne de lecture (légal, guides d'usage, installation) ---------- */
.v-prose { max-width: 720px; margin-inline: auto; padding-block: var(--space-4) var(--space-8); }
.v-prose > * + * { margin-top: var(--space-3); }
.v-prose h2 { font-family: var(--font-title); font-size: 28px; line-height: 1.25; color: var(--ink); margin-top: var(--space-6); }
.v-prose h3 { font-family: var(--font-title); font-size: 21px; line-height: 1.3; color: var(--ink); margin-top: var(--space-4); }
.v-prose h2 + *, .v-prose h3 + * { margin-top: var(--space-2); }
.v-prose p, .v-prose li, .v-prose td, .v-prose th { font-size: 17px; line-height: 1.7; color: var(--text); }
.v-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.v-prose ul, .v-prose ol { display: grid; gap: var(--space-1); padding-left: 0; }
.v-prose ul > li { display: flex; gap: var(--space-2); }
.v-prose ul > li::before { content: ""; flex: 0 0 6px; width: 6px; height: 6px; margin-top: 12px; border-radius: 999px; background: var(--accent); }
.v-prose ol { counter-reset: v; }
.v-prose ol > li { counter-increment: v; display: flex; gap: var(--space-2); }
.v-prose ol > li::before { content: counter(v) "."; flex: 0 0 auto; color: var(--accent); font-weight: 600; }
.v-prose strong, .v-prose b { color: var(--ink); font-weight: 600; }
.v-prose table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.v-prose th, .v-prose td { border-bottom: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.v-prose .v-note { border: 1px solid color-mix(in srgb, var(--accent) 28%, #FFF); background: var(--accent-soft); border-radius: var(--radius); padding: var(--space-3); }
.v-prose section + section { margin-top: var(--space-5); }

/* ---------- Formulaires ---------- */
.v-form { display: grid; gap: var(--space-3); max-width: 640px; }
.v-field { display: grid; gap: 6px; }
.v-field label { font-weight: 600; color: var(--ink); font-size: 15px; }
.v-field .hint { font-size: 14px; color: var(--muted); }
.v-field input, .v-field select, .v-field textarea {
  width: 100%; min-height: 44px; padding: 10px 14px; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--canvas); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
}
.v-field textarea { min-height: 160px; resize: vertical; }
.v-field input:focus-visible, .v-field select:focus-visible, .v-field textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.v-check { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text); }
.v-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }
.v-error { color: #D92D20; font-size: 14px; }
.v-flash { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-2) var(--space-3); background: var(--soft); color: var(--ink); }
.v-flash--ok { border-color: color-mix(in srgb, #34C759 40%, #FFF); background: color-mix(in srgb, #34C759 9%, #FFF); }
.v-flash--error { border-color: color-mix(in srgb, #D92D20 40%, #FFF); background: color-mix(in srgb, #D92D20 7%, #FFF); }

/* ---------- Étapes (comment ça marche, installation) ---------- */
.v-steps { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: s; }
.v-step { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-4); }
.v-step__n { display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-weight: 700; font-family: var(--font-title); }
.v-step h3 { margin-top: var(--space-2); font-family: var(--font-title); font-size: 20px; color: var(--ink); }
.v-step p { margin-top: var(--space-1); color: var(--text); line-height: 1.6; }

/* ---------- Pagination et recherche du blog ---------- */
.v-pager { display: flex; justify-content: center; gap: var(--space-1); margin-top: var(--space-5); flex-wrap: wrap; }
.v-pager a, .v-pager span { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink); text-decoration: none; }
.v-pager [aria-current="page"] { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.v-search { display: flex; gap: var(--space-1); max-width: 520px; }
.v-search input { flex: 1; min-height: 44px; padding: 10px 14px; font: inherit; font-size: 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); }

/* ---------- Mobile : pas de zoom iOS à la saisie ---------- */
@media (max-width: 430px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ---------- Pastilles sous l'en-tête ---------- */
.v-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-1); }
.v-head:not(.v-head--center) .v-chips { justify-content: flex-start; }
.final__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Colonne légale : encadrés et grilles hérités des textes intouchables ---------- */
.v-legal .rounded-2xl, .v-legal .rounded-3xl { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-3); background: var(--canvas); }
.v-legal .rounded-3xl { background: var(--soft); padding: var(--space-4); }
.v-legal .grid { display: grid; gap: var(--space-2); }
@media (min-width: 768px) { .v-legal .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); } .v-legal .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }
.v-legal .space-y-1 > * + *, .v-legal .space-y-2 > * + * { margin-top: 4px; }
.v-legal .mt-2, .v-legal .mt-3, .v-legal .mt-4 { margin-top: var(--space-1); }
.v-legal .mt-6 { margin-top: var(--space-3); }
.v-legal .text-sm, .v-legal .text-sm li, .v-legal .text-sm p { font-size: 15px; }

.v-legal { max-width: 760px; margin-inline: auto; padding-block: var(--space-8) var(--space-6); }
.v-legal > .h1 { margin-top: var(--space-2); }
.v-legal__meta { margin-top: var(--space-2); color: var(--muted); }
.v-legal__body .v-prose { padding-block: var(--space-3) var(--space-4); }
.v-legal > section, .v-legal > div + section { margin-top: var(--space-5); }
.v-legal h2:not(.h2) { font-family: var(--font-title); color: var(--ink); }
.v-legal a { color: var(--accent); }
.v-legal .font-semibold { font-weight: 600; color: var(--ink); }
@media (max-width: 720px) { .v-legal { padding-block: var(--space-6) var(--space-4); } .v-prose h2 { font-size: 23px; } }
.v-legal__meta { max-width: none; font-size: 16px; }
.v-prose section > * + * { margin-top: var(--space-2); }

/* ---------- Choix en tuiles (gravité d'un bug) ---------- */
.v-choices { display: grid; gap: var(--space-1); grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.v-choice { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); cursor: pointer; transition: border-color var(--t) var(--ease); }
.v-choice:hover { border-color: var(--accent); }
.v-choice:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.v-choice input { flex: 0 0 18px; width: 18px; height: 18px; min-height: 0; padding: 0; margin-top: 3px; accent-color: var(--accent); } /* toute l'étiquette est la cible (≥ 44 px) ; 24/09 : la pastille ne se tasse plus */
.v-choice b { display: block; color: var(--ink); font-weight: 600; font-size: 15px; }
.v-choice small { display: block; color: var(--muted); font-size: 14px; }
.v-form .btn svg { margin-right: 8px; }

/* ---------- Cas d'usage ---------- */
.v-head--left .v-head__inner { margin-inline: 0; text-align: left; }
.v-head--left .actions { justify-content: flex-start; }
.v-head--left .v-chips { justify-content: flex-start; }
.crumb + .v-head { padding-top: var(--space-4); }
.v-links { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-4); }
.v-steps { list-style: none; padding: 0; }
fieldset.v-field { border: 0; padding: 0; margin: 0; min-width: 0; }
.v-head + .section--tight { padding-top: var(--space-2); }

/* ---------- Héros à visuel (24/09/2026, retour « trop de blanc ») ----------
   Texte à gauche, visuel à droite dès 900 px, même hauteur visuelle ;
   en mobile, visuel sous les boutons, hauteur bornée. Coins du kit, pas d'ombre. */
.v-head--media .v-head__grid { display: grid; gap: var(--space-4); align-items: center; }
/* Fil d'Ariane des cas d'usage aligné sur le héros large (et non sur la colonne d'article). */
.crumb--wide .container { max-width: var(--container); }
.v-head--media .v-head__inner { max-width: 640px; }
.v-head__media { margin: 0; border-radius: 20px; overflow: hidden; background: var(--soft); border: 1px solid var(--line); }
.v-head__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.v-head__media--device { border: 0; background: none; border-radius: 0; overflow: visible; }
@media (min-width: 900px) {
  .v-head--media { padding-block: var(--space-6) var(--space-6); }
  .crumb + .v-head--media { padding-top: var(--space-3); }
  .v-head--media .v-head__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-6); }
  .v-head--media .v-head__media:not(.v-head__media--device) { aspect-ratio: 4 / 3; }
}
@media (max-width: 899px) {
  .v-head--media .v-head__media:not(.v-head__media--device) { height: clamp(220px, 62vw, 260px); }
}

/* ---------- Cartes « Pour aller plus loin » à vignette ---------- */
.v-more { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: var(--space-3); }
.v-more__card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: inherit; text-decoration: none; background: var(--canvas); transition: border-color var(--t) var(--ease); }
.v-more__card:hover { border-color: var(--accent); }
.v-more__thumb { aspect-ratio: 16 / 9; background: var(--soft); overflow: hidden; }
.v-more__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--ease); }
.v-more__card:hover .v-more__thumb img { transform: scale(1.03); }
.v-more__thumb--icon { display: flex; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent); }
.v-more__thumb--icon svg { width: 44px; height: 44px; }
.v-more__body { padding: var(--space-3); display: grid; gap: 6px; }
.v-more__kind { font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); }
.v-more__title { font-family: var(--font-title); font-size: 19px; font-weight: 600; line-height: 1.3; color: var(--ink); }
.v-more__thumb--screen { background: var(--soft); padding: 14px 14px 0; }
.v-more__thumb--screen img { border-radius: 8px 8px 0 0; border: 1px solid var(--line); border-bottom: 0; object-position: top left; }
@media (min-width: 900px) { .v-more { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (prefers-reduced-motion: reduce) { .v-more__thumb img { transition: none; } }

/* ---------- Appareils des héros Blade (24/09/2026) ----------
   Ordinateur et téléphone dessinés en CSS, VRAIES captures non retouchées.
   Fondu enchaîné en CSS pur (4 écrans, 14 s), coupé si « réduire les animations ». */
.v-laptop { margin: 0; }
.v-laptop__lid { position: relative; width: 92%; margin: 0 auto; padding: 1.6% 1.6% 2.4%; background: #0c0c0e; border: 2px solid #b7bbc2; border-radius: 14px 14px 5px 5px; }
.v-laptop__lid::before { content: ""; position: absolute; top: .6%; left: 50%; width: 5px; height: 5px; translate: -50% 0; border-radius: 50%; background: #2b303a; }
.v-laptop__screen { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 3px; background: #fff; }
.v-laptop__screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.v-laptop__base { position: relative; height: 12px; border-radius: 0 0 50% 50% / 0 0 100% 100%; background: linear-gradient(180deg, #f4f5f7 0%, #d5d8dd 38%, #b3b7be 78%, #8f939a 100%); }
.v-laptop__base::before { content: ""; position: absolute; top: 0; left: 50%; width: 13%; height: 5px; translate: -50% 0; border-radius: 0 0 8px 8px; background: #b3b7be; }
.v-device-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 20px; }
.v-device-tabs span { display: inline-flex; align-items: center; height: 32px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--muted); background: #fff; }
.v-cycle > img { opacity: 0; animation: v-cycle-img 14s infinite both; }
.v-cycle > img:nth-child(2) { animation-delay: 3.5s; }
.v-cycle > img:nth-child(3) { animation-delay: 7s; }
.v-cycle > img:nth-child(4) { animation-delay: 10.5s; }
.v-device-tabs--cycle span { animation: v-cycle-tab 14s infinite both; }
.v-device-tabs--cycle span:nth-child(2) { animation-delay: 3.5s; }
.v-device-tabs--cycle span:nth-child(3) { animation-delay: 7s; }
.v-device-tabs--cycle span:nth-child(4) { animation-delay: 10.5s; }
@keyframes v-cycle-img { 0% { opacity: 0; } 4%, 25% { opacity: 1; } 29%, 100% { opacity: 0; } }
@keyframes v-cycle-tab {
  0% { color: var(--muted); border-color: var(--line); background: #fff; }
  4%, 25% { color: var(--accent); border-color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, #fff); }
  29%, 100% { color: var(--muted); border-color: var(--line); background: #fff; }
}
@media (prefers-reduced-motion: reduce) {
  .v-cycle > img, .v-device-tabs--cycle span { animation: none; }
  .v-cycle > img:first-child { opacity: 1; }
  .v-device-tabs--cycle span:first-child { color: var(--accent); border-color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, #fff); }
}
/* Duo : ordinateur en retrait, téléphone posé devant à droite (ne masque que le cadre). */
.v-duo { position: relative; padding-bottom: 4%; }
.v-duo .v-laptop { width: 84%; }
.v-phone { position: absolute; right: 0; bottom: 0; width: 19%; margin: 0; padding: 1.8%; background: #0c0c0e; border: 2px solid #b7bbc2; border-radius: 20px; }
.v-phone__screen { position: relative; aspect-ratio: 9 / 19.5; overflow: hidden; border-radius: 15px; background: #fff; }
.v-phone__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.v-phone__screen img.v-phone__scroll { height: auto; object-fit: initial; animation: v-phone-scroll 16s ease-in-out infinite; }
@keyframes v-phone-scroll { 0%, 18% { transform: translateY(0); } 50%, 64% { transform: translateY(-38%); } 92%, 100% { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .v-phone__screen img.v-phone__scroll { animation: none; } }
@media (max-width: 899px) { .v-head__media--device { max-width: 560px; width: 100%; margin-inline: auto; } }

/* ---------- Article : en-tête en deux colonnes (24/09/2026) ---------- */
@media (min-width: 900px) {
  .crumb--split .container { max-width: var(--container); }
  .page-head--split .page-head__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-6); align-items: center; }
  .page-head--split .page-head__inner { max-width: none; margin-inline: 0; }
  .page-head--split .cover { max-width: none; margin: 0; border-radius: 20px; }
  .page-head--split .cover img { aspect-ratio: 3 / 2; }
}
@media (max-width: 899px) {
  .page-head--split .cover { margin-top: var(--space-4); }
}

/* ---------- Blog : recherche et thèmes dans l'en-tête (24/09/2026) ---------- */
.blog-tools { display: grid; gap: var(--space-2); margin-top: var(--space-4); }
.blog-tools .v-search { max-width: none; }
.blog-tools__cats { display: flex; flex-wrap: wrap; gap: var(--space-1); }
.blog-tools__cats .chip { text-decoration: none; color: var(--ink); transition: color var(--t) var(--ease), background-color var(--t) var(--ease); }
.blog-tools__cats .chip:hover { color: var(--accent); }
.blog-tools__cats .chip.is-on { color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, #fff); }
@media (min-width: 721px) and (max-width: 900px) { .head-visual--tools { grid-template-columns: minmax(0, 1fr); } }
@media (min-width: 901px) {
  .head-visual--tools { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 460px); gap: var(--space-6); align-items: end; }
  .head-visual--tools .blog-tools { margin-top: 0; padding-bottom: 6px; }
}

/* ---------- Formulaire + colonne d'aide (signaler un bug, 24/09/2026) ---------- */
.v-split { display: grid; gap: var(--space-5); }
.v-split__aside { border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); padding: var(--space-4); }
.v-split__title { font-family: var(--font-title); font-size: 20px; line-height: 1.3; color: var(--ink); }
.v-tips { list-style: none; padding: 0; margin: var(--space-3) 0 0; display: grid; gap: var(--space-3); }
.v-tip { display: flex; gap: var(--space-2); align-items: flex-start; }
.v-tip .v-card__icon { flex: 0 0 44px; background: color-mix(in srgb, var(--accent) 9%, #fff); }
.v-tip b { display: block; color: var(--ink); font-weight: 600; font-size: 16px; }
.v-tip small { display: block; margin-top: 2px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.v-split__note { margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid var(--line); color: var(--text); font-size: 15px; line-height: 1.6; }
.v-split__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 900px) {
  .v-split { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--space-8); align-items: start; }
  .v-split .v-form { max-width: none; }
  .v-split__aside { position: sticky; top: 96px; }
}

/* ---------- Pages légales : sommaire collant (24/09/2026) ---------- */
.v-toc { display: none; }
.v-legal__body--toc section[id^="article-"] { scroll-margin-top: 96px; }
@media (min-width: 1024px) {
  .v-legal:has(.v-legal__body--toc) { max-width: none; }
  .v-legal__body--toc { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: var(--space-8); align-items: start; margin-top: var(--space-6); }
  .v-legal__body--toc .v-prose { max-width: 760px; margin-inline: 0; padding-top: 0; }
  .v-legal__body--toc .v-prose > section:first-of-type > h2:first-child { margin-top: 0; }
  .v-toc { display: block; position: sticky; top: 96px; padding: var(--space-3); border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); max-height: calc(100vh - 128px); overflow: auto; }
  .v-toc__title { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
  .v-toc ol { list-style: none; padding: 0; margin: var(--space-2) 0 0; display: grid; gap: 2px; }
  .v-toc a { display: block; padding: 7px 10px; border-radius: 8px; font-size: 14px; line-height: 1.4; color: var(--text); text-decoration: none; transition: color var(--t) var(--ease), background-color var(--t) var(--ease); }
  .v-toc a:hover { color: var(--accent); }
  .v-toc a.is-on { color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, #fff); font-weight: 600; }
  .v-legal:has(.v-legal__body--toc) > .h1, .v-legal:has(.v-legal__body--toc) > .eyebrow, .v-legal:has(.v-legal__body--toc) > .v-legal__meta { max-width: 900px; }
}
