:root {
  --ink: #16181a;
  --muted: #5b6266;
  --line: #e3e6e8;
  --accent: #0b4f9e; /* the blue used in the Commission's own notice */
  --bg: #ffffff;
  --panel: #f7f8f9;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8eaec;
    --muted: #a2abb0;
    --line: #2a2e31;
    --accent: #7db4f0;
    --bg: #16181a;
    --panel: #1d2124;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }

header.site {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-bottom: 48px;
}

header.site .wrap { display: flex; align-items: center; gap: 20px; }

.brand { font-weight: 700; letter-spacing: -0.02em; text-decoration: none; color: var(--ink); font-size: 18px; }
.brand span { color: var(--accent); }

nav.site { margin-left: auto; display: flex; gap: 20px; }
nav.site a { color: var(--muted); text-decoration: none; font-size: 15px; }
nav.site a:hover { color: var(--ink); }

h1 { font-size: 34px; line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 16px; }
h2 { font-size: 21px; letter-spacing: -0.01em; margin: 40px 0 12px; }
h3 { font-size: 17px; margin: 28px 0 8px; }

p, li { color: var(--ink); }
.lede { font-size: 19px; color: var(--muted); margin-bottom: 32px; }
.muted { color: var(--muted); }

a { color: var(--accent); }

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0;
}

table { border-collapse: collapse; width: 100%; margin: 20px 0; font-size: 15px; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 600; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }

footer.site {
  border-top: 1px solid var(--line);
  margin-top: 72px;
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 14px;
}

footer.site a { color: var(--muted); }

code { background: var(--panel); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
