/* Rechtstexte. Bewusst zurückhaltend: hier zählt Lesbarkeit, nicht Charakter.
   Setzt tokens.css und jbg.css voraus, die davor eingebunden werden. */

.legal { max-width: 46rem; }

.legal section {
  padding: 1.5rem 0;
  border-top: var(--edge);
}
.legal section:first-of-type { border-top: 0; }

.legal h2 {
  font-size: var(--step-1);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.legal p + p { margin-top: 0.9rem; }
.legal p { color: var(--muted); }
.legal strong { color: var(--signal); font-weight: 600; }

.legal ul {
  margin: 0; padding: 0; list-style: none;
  display: grid; gap: 0.6rem;
}
.legal li {
  position: relative; padding-left: 1.2rem; color: var(--muted);
}
.legal li::before {
  content: '—'; position: absolute; left: 0;
  font-family: var(--font-mono); color: var(--index);
}

.legal code {
  background: rgba(232, 237, 247, 0.07);
  border: var(--edge); border-radius: 5px;
  padding: 0.1em 0.4em;
}

.legal a { color: var(--index); }
