/* =========================================================================
   La Constitution belge — identité visuelle : l'encre et la patine.
   Encre chaude sur papier ; un vert-de-gris (la patine du bronze où l'on
   grave les textes de loi) pour tout ce qui marque le temps : versions,
   dates, liens vers d'autres époques.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Polices, hébergées ici (public/assets/polices/, licence SIL OFL jointe).
   Rien n'est chargé depuis fonts.googleapis.com : cela transmettrait
   l'adresse IP de chaque visiteur à un tiers.

   Seules les graisses réellement utilisées sont présentes : Bodoni Moda 700
   pour le titrage, Literata 400/600 (romain, un seul fichier variable
   couvrant les deux) et Literata 400 italique pour la lecture. Chaque
   graisse existe en deux fichiers (latin, latin-ext) : la réunion des deux
   couvre les diacritiques du français, du néerlandais et de l'allemand.
   ------------------------------------------------------------------------- */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/polices/bodoni-moda-700.latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/polices/bodoni-moda-700.latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Literata';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/polices/literata-400-600.latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Literata';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/polices/literata-400-600.latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Literata';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/polices/literata-400italic.latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Literata';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/polices/literata-400italic.latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* -------------------------------------------------------------------------
   Palette. Trois états : clair par défaut, sombre par préférence système,
   sombre forcé par [data-theme="dark"] si un sélecteur existe un jour.
   Chaque jeton a sa seule définition dans un bloc conditionnel — jamais
   les deux à la fois — pour qu'aucune couleur n'oublie l'un des trois états.
   ------------------------------------------------------------------------- */
:root {
  --encre: #1F1B16;
  --papier: #FCFBF8;
  --patine: #3E6B5E;
  --trait: #DCD6CC;
  --sourdine: #6B6259;

  --police-titrage: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --police-lecture: 'Literata', Georgia, 'Times New Roman', serif;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --encre: #E8E3DA;
    --papier: #16140F;
    --patine: #7FA396;
    --trait: #2E2A24;
    --sourdine: #9A9086;
  }
}

:root[data-theme="dark"] {
  --encre: #E8E3DA;
  --papier: #16140F;
  --patine: #7FA396;
  --trait: #2E2A24;
  --sourdine: #9A9086;
}

/* -------------------------------------------------------------------------
   Base. Le fond du texte prime : pas de fond coloré, pas d'ombre, pas de
   carte — la patine ne sert qu'aux marques de temps.
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { color-scheme: light dark; }

body {
  margin: 0;
  background: var(--papier);
  color: var(--encre);
  font-family: var(--police-lecture);
  font-size: 1.0625rem;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Aucune animation : sur un texte que l'on cite, le mouvement est une
   nuisance. Respecté par principe, pas seulement pour qui l'a demandé. */
*, *::before, *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

a {
  color: var(--patine);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 2px solid var(--patine);
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------
   En-tête, présent sur toutes les pages : titre, sous-titre, révisions,
   les deux champs de navigation (« aller à »), sélecteur de langue.
   ------------------------------------------------------------------------- */
header, main {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

header {
  border-bottom: 1px solid var(--trait);
  padding-top: 1.75rem;
  padding-bottom: 1.25rem;
}

header > a {
  font-family: var(--police-titrage);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--encre);
  text-decoration: none;
  letter-spacing: 0.01em;
}

header em {
  display: block;
  font-style: italic;
  color: var(--sourdine);
  margin-top: 0.2rem;
  font-size: 0.95rem;
}

header nav {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.5rem;
}

header nav > a.revisions,
header nav > a:first-child {
  font-family: var(--police-lecture);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--patine);
  text-decoration: none;
}
header nav > a:first-child:hover { text-decoration: underline; }

form.aller {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
form.aller label {
  font-family: var(--police-lecture);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sourdine);
  white-space: nowrap;
}
form.aller input {
  font-family: var(--police-lecture);
  font-size: 0.85rem;
  border: none;
  border-bottom: 1px solid var(--trait);
  border-radius: 0;
  background: transparent;
  color: var(--encre);
  padding: 0.2rem 0.1rem;
  width: 8.5rem;
  max-width: 32vw;
}
form.aller input::placeholder { color: var(--sourdine); opacity: 0.7; }
form.aller input:focus-visible { outline: 2px solid var(--patine); outline-offset: 2px; }
form.aller button {
  font-family: var(--police-lecture);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--patine);
  background: transparent;
  color: var(--patine);
  padding: 0.3rem 0.65rem;
  cursor: pointer;
}
form.aller button:hover { background: var(--patine); color: var(--papier); }

.langues {
  margin-left: auto;
  display: flex;
  gap: 0.7rem;
}
.langues a {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  text-decoration: none;
}
.langues a:hover { text-decoration: underline; }

.aller-erreur {
  color: var(--patine);
  border-left: 2px solid var(--patine);
  padding-left: 0.9rem;
  font-size: 0.95rem;
}

/* -------------------------------------------------------------------------
   Titrage. Bodoni Moda, employé avec parcimonie : grandes tailles
   uniquement — jamais en petit corps, où un didone devient grêle.
   ------------------------------------------------------------------------- */
h1 {
  font-family: var(--police-titrage);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 2.2rem 0 1.4rem;
  color: var(--encre);
}

p.date {
  font-family: var(--police-lecture);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--patine);
  margin: -0.6rem 0 1.6rem;
}

main p { margin: 0 0 1.1rem; max-width: 65ch; }

/* -------------------------------------------------------------------------
   La colonne de marge — la signature du gabarit. Dans un code imprimé, le
   numéro d'article n'est pas dans le texte : il est dans la marge, pour que
   l'œil parcoure la page sans la lire. Repliée au-dessus du texte sur écran
   étroit ; en colonne à partir de la largeur où les deux tiennent l'une à
   côté de l'autre.
   ------------------------------------------------------------------------- */
.colonne-marge h2 {
  font-family: var(--police-lecture);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 2.75rem 0 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--trait);
  color: var(--sourdine);
}
.colonne-marge h2 a { color: inherit; text-decoration: none; }
.colonne-marge h2 a:hover { color: var(--patine); }

.colonne-marge p[data-paragraphe],
.colonne-marge p[data-alinea] { position: relative; }

@media (min-width: 62rem) {
  header, main { max-width: 60rem; }

  main { position: relative; }

  .colonne-marge {
    --marge: 8rem;
    --entrefer: 2rem;
    padding-left: calc(var(--marge) + var(--entrefer));
  }

  .colonne-marge h1 { margin-left: calc(-1 * (var(--marge) + var(--entrefer))); }

  .colonne-marge h2 {
    position: absolute;
    left: 0;
    width: var(--marge);
    margin: 0;
    padding: 0;
    border-top: none;
    text-align: right;
    line-height: 1.3;
  }

  .colonne-marge p[data-paragraphe]::before,
  .colonne-marge p[data-alinea]::after {
    position: absolute;
    left: calc(-1 * (var(--marge) + var(--entrefer)));
    width: var(--marge);
    text-align: right;
    font-family: var(--police-lecture);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--sourdine);
  }
  .colonne-marge p[data-paragraphe]::before { content: "§ " attr(data-paragraphe); top: 0; }
  .colonne-marge p[data-alinea]::after { content: attr(data-alinea); top: 1.35em; text-transform: uppercase; }
}

/* -------------------------------------------------------------------------
   Article isolé (/{langue}/article/{numero}) et trajectoire.
   ------------------------------------------------------------------------- */
p.transitoire {
  border-left: 2px solid var(--trait);
  padding-left: 1rem;
  font-style: italic;
}
p.transitoire strong {
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  color: var(--sourdine);
}

ol.trajectoire { list-style: none; padding: 0; margin: 0; }
ol.trajectoire li {
  border-left: 2px solid var(--trait);
  padding: 0 0 0 1.4rem;
  margin-bottom: 2.5rem;
}
ol.trajectoire h2 {
  font-family: var(--police-lecture);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
  color: var(--patine);
}

.autre-numero {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--sourdine);
}

/* -------------------------------------------------------------------------
   Mentions discrètes mais explicites : traduction manquante (repli sur le
   français) et abrogation. Jamais confondues avec le texte constitutionnel
   lui-même — d'où l'italique et la couleur sourdine, jamais la seule couleur
   rouge (spec §8 : l'abrogation n'est plus signalée par la seule couleur).
   ------------------------------------------------------------------------- */
.note-traduction {
  display: inline-block;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--sourdine);
}

p.abroge {
  border-left: 2px solid var(--patine);
  padding-left: 1rem;
  font-style: italic;
  color: var(--sourdine);
}

/* -------------------------------------------------------------------------
   Index des articles — les numéros de l'état affiché, en accès direct.
   Il n'accompagne que la page de texte ; ailleurs, `.lecture` n'a qu'un
   seul enfant et se comporte comme le <main> nu.
   ------------------------------------------------------------------------- */
.index-articles {
  max-width: 46rem;
  margin: 1.5rem auto 0;
  padding: 0 1.25rem;
  font-family: var(--police-titrage);
}

.index-articles > summary {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sourdine);
  cursor: pointer;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--trait);
}

.index-articles ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.4rem;
  margin: 0.6rem 0 0;
  padding: 0;
  /* L'interligne de lecture du corps de texte (1,75) rend l'index lâche :
     une grille de repères se parcourt du regard, elle ne se lit pas. */
  line-height: 1.2;
  /* Sur écran étroit l'index précède le texte : le plafond l'empêche de
     devenir un mur de 209 numéros devant la Constitution. */
  max-height: 11rem;
  overflow-y: auto;
}

.index-articles a {
  display: block;
  padding: 0.1rem 0.3rem;
  font-size: 0.86rem;
  font-variant-numeric: tabular-nums;
  color: var(--sourdine);
  text-decoration: none;
  border-radius: 2px;
}

.index-articles a:hover,
.index-articles a:focus-visible { color: var(--papier); background: var(--patine); }

@media (min-width: 62rem) {
  /* La colonne latérale se prend sur la droite : la gauche est déjà occupée
     par les numéros d'articles de `.colonne-marge`. */
  .lecture {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 9rem;
    gap: 2.5rem;
    max-width: 74rem;
    margin: 0 auto;
    align-items: start;
  }

  /* Dans la grille, le texte ne se recentre pas dans sa cellule : son bord
     gauche doit rester aligné sur celui de l'en-tête, élargi d'autant. */
  /* La ligne doit être explicite pour les deux : l'index précède le texte dans
     le document (ordre de lecture au clavier), et le placement automatique ne
     revient jamais en arrière — sans `grid-row`, le texte tombe en ligne 2,
     sous la hauteur entière de l'index. */
  .lecture > main { grid-column: 1; grid-row: 1; max-width: none; margin: 0; }

  header { max-width: 74rem; }

  .index-articles {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    margin: 0;
    padding: 2.5rem 1.25rem 0 0;
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow-y: auto;
  }

  .index-articles > summary { list-style: none; cursor: default; }
  .index-articles > summary::-webkit-details-marker { display: none; }

  .index-articles ol { max-height: none; overflow-y: visible; }
}

.index-articles sup {
  font-size: 0.62em;
  margin-left: 0.05em;
  color: var(--patine);
}

.index-articles a:hover sup,
.index-articles a:focus-visible sup { color: inherit; }

/* -------------------------------------------------------------------------
   Le marqueur de provenance — la version dont l'article tient sa forme
   actuelle. Il n'appartient pas au texte de loi : il s'efface derrière lui.
   ------------------------------------------------------------------------- */
.provenance {
  margin: 0 0 0.5rem;
  font-family: var(--police-lecture);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.provenance a {
  color: var(--sourdine);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.provenance a:hover,
.provenance a:focus-visible {
  color: var(--patine);
  border-bottom-color: var(--patine);
}

/* -------------------------------------------------------------------------
   La frise des révisions — soixante jalons, un par version. Sur une page
   d'article, les versions où il n'existe pas sont inertes : la frise donne
   à voir la durée de vie de la disposition.

   La marge haute n'est pas décorative : le nom de la version s'y affiche au
   survol. Un conteneur qui défile horizontalement rogne aussi le haut (une
   seule valeur `visible` ne survit pas à côté d'un `auto`), l'étiquette doit
   donc tenir à l'intérieur du cadre défilant.
   ------------------------------------------------------------------------- */
.frise {
  max-width: 74rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 0.9rem;
  overflow-x: auto;
}

.frise ol {
  list-style: none;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.frise li { position: relative; flex: 0 0 auto; }

.frise a,
.frise li > span {
  display: block;
  width: 4px;
  height: 18px;
  background: var(--patine);
}

/* Un jalon inerte : l'article n'existe pas à cette date. Plus court et sourd,
   il se lit comme une absence sans jamais inviter au clic. */
.frise .inerte > span { height: 7px; background: var(--trait); }

.frise .courante a { width: 6px; height: 26px; background: var(--encre); }

.frise a:hover { background: var(--encre); }
.frise a:focus-visible { outline: 2px solid var(--encre); outline-offset: 2px; }

/* Le nom reste dans le HTML pour les lecteurs d'écran ; seule la mise en page
   le retire de la vue jusqu'au survol ou au focus. */
.frise .nom {
  position: absolute;
  bottom: 100%;
  /* Ancrée à droite du repère plutôt que centrée sur lui : centrée, l'étiquette
     des trois premiers jalons sortait du cadre défilant, qui la rognait. */
  left: 0;
  margin-bottom: 0.35rem;
  white-space: nowrap;
  font-family: var(--police-lecture);
  font-size: 0.7rem;
  color: var(--sourdine);
  background: var(--papier);
  padding: 0 0.3rem;
  clip-path: inset(50%);
}

.frise a:hover .nom,
.frise a:focus-visible .nom,
.frise li:hover > span .nom { clip-path: none; }

/* -------------------------------------------------------------------------
   Le bloc de citation — ce qu'on recopie en note de bas de page.

   La référence se sélectionne d'un seul geste grâce à `user-select: all` :
   le site n'a pas une ligne de JavaScript, et ce n'est pas pour en ajouter
   une ici.
   ------------------------------------------------------------------------- */
.citation {
  max-width: 74rem;
  margin: 3rem auto 2.5rem;
  padding: 1.2rem 1.25rem 0;
  border-top: 1px solid var(--trait);
}

.citation h2 {
  font-family: var(--police-lecture);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--patine);
  margin: 0 0 0.6rem;
  border: none;
  padding: 0;
}

.citation .reference {
  user-select: all;
  -webkit-user-select: all;
  font-family: var(--police-lecture);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--encre);
  margin: 0 0 0.4rem;
  max-width: 60ch;
}

.citation .adresse { margin: 0; font-size: 0.78rem; }
.citation .adresse a { color: var(--sourdine); text-decoration: none; }
.citation .adresse a:hover,
.citation .adresse a:focus-visible { color: var(--patine); text-decoration: underline; }

/* -------------------------------------------------------------------------
   La trajectoire — l'histoire d'un article, du plus ancien au plus récent.
   Le filet vertical n'est pas décoratif : il porte la continuité de
   l'article d'une version à l'autre, et chaque version en est un jalon.
   ------------------------------------------------------------------------- */
.trajectoire {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trajectoire > li {
  position: relative;
  padding: 0 0 2rem 1.75rem;
  border-left: 1px solid var(--trait);
}

.trajectoire > li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  background: var(--patine);
  border-radius: 50%;
}

/* Le dernier jalon ferme la ligne : le filet ne doit pas se prolonger dans le vide. */
.trajectoire > li:last-child { border-left-color: transparent; }

.trajectoire h2 {
  font-family: var(--police-lecture);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sourdine);
  margin: 0 0 0.5rem;
  border: none;
  padding: 0;
}

.evenement {
  font-family: var(--police-lecture);
  font-size: 0.85rem;
  color: var(--patine);
  margin: 0 0 0.7rem;
}

.autre-numero {
  font-size: 0.82rem;
  color: var(--sourdine);
  margin: 0 0 0.6rem;
}

/* -------------------------------------------------------------------------
   La comparaison. L'ajout et la suppression ne se distinguent pas par la
   seule couleur : le soulignement, la rature et une étiquette lue par les
   lecteurs d'écran portent la même information. Une comparaison imprimée
   en noir et blanc reste donc lisible.
   ------------------------------------------------------------------------- */
.comparaison { margin: 1.5rem 0; }
.comparaison p { max-width: 65ch; }

.comparaison ins {
  text-decoration: none;
  border-bottom: 2px solid var(--patine);
  background: color-mix(in srgb, var(--patine) 12%, transparent);
}

.comparaison del {
  text-decoration: line-through;
  color: var(--sourdine);
}

/* L'étiquette n'est pas affichée mais reste lisible par un lecteur d'écran. */
.comparaison .etiquette {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.deux-colonnes { display: grid; gap: 2rem; }
.deux-colonnes .colonne h2 {
  font-family: var(--police-lecture);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sourdine);
  margin: 0 0 0.6rem;
  border: none;
  padding: 0;
}

@media (min-width: 62rem) {
  .deux-colonnes { grid-template-columns: 1fr 1fr; }
}

.dispositions { display: flex; gap: 1rem; margin: 0 0 1.2rem; }
.dispositions a { font-size: 0.85rem; color: var(--sourdine); text-decoration: none; }
.dispositions a[aria-current] { color: var(--encre); border-bottom: 1px solid var(--patine); }

.bornes {
  font-family: var(--police-lecture);
  font-size: 0.85rem;
  color: var(--sourdine);
  margin: -0.6rem 0 1.2rem;
}

.aucun-changement {
  font-size: 0.9rem;
  color: var(--sourdine);
  border-left: 2px solid var(--trait);
  padding-left: 1rem;
  margin: 0 0 1.2rem;
}
