/* Rechtstexte-Seiten (AP29). Bewusst ohne Fremdbibliotheken, ohne Schriften
   aus dem Netz, ohne Skripte: Die Seiten sollen auf jedem Handy schnell laden
   und selbst nichts messen. */
:root {
  color-scheme: light dark;
  --text: #1c1c1e;
  --muted: #6b6b70;
  --bg: #ffffff;
  --accent: #0a84ff;
  --line: #e2e2e6;
}
@media (prefers-color-scheme: dark) {
  :root { --text: #f2f2f7; --muted: #9a9aa0; --bg: #121214; --line: #2c2c30; }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
main { max-width: 42rem; margin: 0 auto; padding: 1.5rem 1.25rem 4rem; }
header { border-bottom: 1px solid var(--line); }
header nav {
  max-width: 42rem; margin: 0 auto; padding: .9rem 1.25rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; align-items: center;
}
header nav strong { margin-right: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1 { font-size: 1.7rem; line-height: 1.25; margin: .5rem 0 1rem; }
h2 { font-size: 1.2rem; margin: 2rem 0 .5rem; }
p, li { margin: .4rem 0; }
.hinweis {
  border: 1px solid var(--line); border-left: 4px solid var(--accent);
  padding: .6rem .9rem; border-radius: 6px; color: var(--muted); font-size: .95rem;
}
.stand { color: var(--muted); font-size: .9rem; }
footer { max-width: 42rem; margin: 0 auto; padding: 1rem 1.25rem 2rem; color: var(--muted); font-size: .9rem; }
