/* style.css – Bildschirmversion, freundlich & kompakt */

:root{
  --bg:#f6f7f9;
  --card:#ffffff;
  --text:#111;
  --muted:#666;
  --accent:#0b66c3;
  --border:#e6e9ee;
  --maxw:900px;
  --radius:10px;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; background:var(--bg); color:var(--text)}
.wrapper{max-width:var(--maxw);margin:28px auto;padding:20px;background:var(--card);border:1px solid var(--border);border-radius:var(--radius)}
header{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;border-bottom:1px solid var(--border);padding-bottom:12px;margin-bottom:14px}
.title h1{margin:0;font-size:20px}
.title .subtitle{margin:6px 0 0;color:var(--muted)}
.meta p{margin:2px 0;color:var(--muted);font-size:13px;text-align:right}
main{display:block}
.box{padding:12px;border-radius:8px;background:linear-gradient(180deg,#fff,#fbfcfe);border:1px solid var(--border);margin-bottom:12px}
h2{margin:0 0 8px 0;font-size:15px}
h3{margin:8px 0 6px 0;font-size:13px}
p,li{font-size:14px;line-height:1.45;color:var(--text)}
ul,ol{margin:6px 0 0 18px}
.note{margin-top:8px;padding:8px;border-left:3px solid var(--accent);background:#f3f9ff;color:var(--text)}
footer{display:flex;justify-content:space-between;gap:12px;align-items:center;color:var(--muted);font-size:13px;padding-top:8px;border-top:1px solid var(--border)}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}

@media (max-width:720px){
  header{flex-direction:column;align-items:flex-start}
  .meta{text-align:left}
}
