/* ==========================================================================
   ELEMENTS · LISTS — readable list defaults for prose. Markers tint to the
   secondary ink so the text, not the bullet, carries the line.
   ========================================================================== */

ul, ol {
  padding-left: 1.3em;
}

li + li { margin-top: 0.4em; }

li::marker {
  color: var(--text-secondary);
}

ol { font-variant-numeric: oldstyle-nums; }

/* Nested lists tighten their rhythm */
li > ul,
li > ol { margin-top: 0.4em; }

/* A definition list reads as a small ledger */
dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2xs) var(--space-md);
  align-items: baseline;
}
