/* Gestaltung der Rechtstexte – folgt der Darstellung des Geräts. */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  --bg: #0e1116; --panel: #151a21; --line: #252d38;
  --txt: #e8edf4; --mut: #8c98a8; --dim: #5f6b7a; --acc: #4f8cff;
  color-scheme: dark;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f4f6f9; --panel: #ffffff; --line: #dde4ee;
    --txt: #16202c; --mut: #5c6b7e; --dim: #8b98a9; --acc: #1c5cc4;
    color-scheme: light;
  }
}

body {
  background: var(--bg); color: var(--txt); line-height: 1.65;
  font-family: "Segoe UI", -apple-system, system-ui, sans-serif; font-size: 15.5px;
  -webkit-font-smoothing: antialiased; padding: 0 20px 60px;
}
.hülle { max-width: 720px; margin: 0 auto; }

header { display: flex; align-items: center; gap: 10px; padding: 22px 0 26px; }
.zeichen { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, #4f8cff, #8b5cf6); color: #fff; font-weight: 800; font-size: 15px; }
header b { font-size: 17px; }
header a { margin-left: auto; color: var(--acc); text-decoration: none; font-size: 14px; }

h1 { font-size: 25px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 6px; }
.stand { color: var(--dim); font-size: 13px; margin-bottom: 26px; }
h2 { font-size: 17px; font-weight: 660; margin: 28px 0 9px; }
h3 { font-size: 15px; font-weight: 640; margin: 18px 0 6px; }
p, li { color: var(--mut); }
p { margin-bottom: 11px; }
ul, ol { margin: 0 0 13px 21px; }
li { margin-bottom: 5px; }
a { color: var(--acc); }
strong { color: var(--txt); }

.kasten { background: var(--panel); border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 17px; margin: 14px 0 20px; }
.kasten p:last-child { margin-bottom: 0; }

table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; font-size: 14.2px; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line);
  vertical-align: top; color: var(--mut); }
th { color: var(--txt); font-weight: 640; width: 34%; }

footer { margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--dim); display: flex; gap: 14px; flex-wrap: wrap; }
