/* Opmaak voor de tekstpagina's (privacy, disclaimer). Zelfde kleuren als de site. */
@import url("fonts.css");
:root {
  --bg: #f3f5fa; --surface: #ffffff; --ink: #0f1e33; --muted: #5b6478; --line: #e3e7f0;
  --volt: #ffe600; --accent: #3b4bff; --good: #0f9d68;
  --display: "Unbounded", system-ui, sans-serif; --body: "Figtree", system-ui, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #0a0e18; --surface: #121827; --ink: #eef1f8; --muted: #97a0b5; --line: #232b3d; --accent: #7c8bff; }
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 17px/1.65 var(--body); -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }
.wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }
header { padding: 18px 0 8px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
header img { height: 28px; width: auto; display: block; }
header a.terug { font-weight: 700; font-size: 15px; text-decoration: none; padding: 10px 0; }
h1 { font: 800 clamp(26px, 6vw, 36px)/1.15 var(--display); letter-spacing: -.02em; margin: 28px 0 6px; }
h2 { font: 800 20px/1.3 var(--display); letter-spacing: -.01em; margin: 40px 0 8px; }
p, ul { margin: 0 0 14px; }
ul { padding-left: 22px; }
li { margin-bottom: 6px; }
.datum { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.kort { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; margin: 20px 0 8px; }
.kort ul { margin: 0; }
.wie { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 6px 20px; }
.wie dl { margin: 0; display: grid; grid-template-columns: 9.5em 1fr; gap: 0 14px; }
.wie dt { font-weight: 700; padding: 10px 0; border-bottom: 1px solid var(--line); }
.wie dd { margin: 0; padding: 10px 0; border-bottom: 1px solid var(--line); }
.wie dt:last-of-type, .wie dd:last-of-type { border-bottom: 0; }
/* Nog in te vullen: moet zichtbaar zijn zodat het niet per ongeluk live gaat */
.invullen { background: var(--volt); color: #111; padding: 1px 6px; border-radius: 5px; font-weight: 700; }
table { width: 100%; border-collapse: collapse; margin: 6px 0 16px; font-size: 15.5px; }
th, td { text-align: left; padding: 9px 10px 9px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
footer { margin: 50px 0 40px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 15px; display: flex; gap: 18px; flex-wrap: wrap; }
/* smalle schermen: elke tabelrij wordt een eigen blok in plaats van drie krappe kolommen */
@media (max-width: 640px) {
  table, tbody, tr, td { display: block; width: 100%; }
  thead { display: none; }
  tr { padding: 12px 0; border-bottom: 1px solid var(--line); }
  td { border: 0; padding: 0 0 4px; }
  td:first-child { font-weight: 700; }
  td:nth-child(3) { color: var(--muted); font-size: 15px; }
  td:nth-child(3)::before { content: "Bij: "; font-weight: 700; }
}
@media (max-width: 520px) {
  body { font-size: 16.5px; }
  .wie dl { grid-template-columns: 1fr; }
  .wie dt { border-bottom: 0; padding-bottom: 0; }
}
