.legal-hero {
  padding: clamp(120px, 16vh, 160px) 0 36px;
}

.backlink {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 26px;
  transition: color 0.25s;
}

.backlink:hover {
  color: var(--accent);
}

.legal-hero h1 {
  color: var(--fg);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.legal-hero .stand {
  font-size: 15px;
  color: var(--muted);
  margin-top: 20px;
}

.legal {
  padding: 30px 0 clamp(72px, 10vw, 110px);
}

.legal-content {
  max-width: 72ch;
}

.block {
  padding: 32px 0;
  border-top: 1px solid var(--line-2);
}

.block:first-of-type {
  border-top: none;
  padding-top: 0;
}

/* Bewusst kein Flex: Als Flex-Item dürfte der Überschriftentext nicht unter
   seine Min-Content-Breite, und ein Wort wie "Verbraucherstreitbeilegung"
   schiebt dann auf schmalen Geräten die ganze Seite auf. */
.block h2 {
  color: var(--fg);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 16px;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Die Ziffern sind hier keine Deko: Ein Rechtstext wird nach Abschnitt
   zitiert, die Nummer trägt Information. */
.block h2 .n {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-right: 12px;
}

.block h3 {
  color: var(--fg);
  font-weight: 600;
  font-size: 1.0625rem;
  margin: 22px 0 10px;
}

.block p,
.block li,
.addr {
  overflow-wrap: break-word;
  hyphens: auto;
}

.block p {
  font-size: 1.0313rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--text);
}

.block p:last-child {
  margin-bottom: 0;
}

.block strong {
  color: var(--fg);
  font-weight: 600;
}

.block a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(26, 86, 255, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.25s;
  overflow-wrap: anywhere;
}

.block a:hover {
  text-decoration-color: var(--accent);
}

.block ul {
  margin: 6px 0 14px;
  padding-left: 0;
  list-style: none;
}

.block li {
  font-size: 1.0313rem;
  line-height: 1.6;
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.block li:last-child {
  border-bottom: none;
}

/* Als Fläche gezeichnet, nicht als Zeichen: Ein Pfeil im content würde
   von Screenreadern mitgelesen. */
.block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 7px;
  height: 1px;
  background: var(--accent);
}

.addr {
  font-size: 1.0313rem;
  line-height: 1.85;
  color: var(--text);
}

.addr .hl {
  color: var(--fg);
  font-weight: 600;
}

body > footer {
  margin-top: 30px;
}
