:root {
  --paper: #f6faf6; --surface: #ffffff; --surface-2: #ecf3ec;
  --ink: #17211a; --ink-soft: #47564b; --ink-faint: #6d7d71;
  --line: #d5e0d6; --accent: #23713f;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #101613; --surface: #161e19; --surface-2: #1c2620;
    --ink: #e2ebe3; --ink-soft: #a8b8ac; --ink-faint: #7e8f83;
    --line: #2a362e; --accent: #62b981;
  }
}
:root[data-theme="dark"] {
  --paper: #101613; --surface: #161e19; --surface-2: #1c2620;
  --ink: #e2ebe3; --ink-soft: #a8b8ac; --ink-faint: #7e8f83;
  --line: #2a362e; --accent: #62b981;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif; font-synthesis: none;
  font-size: 16px; line-height: 1.65;
}
main { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }
h1, h2 { font-family: "Manrope", "Helvetica Neue", Arial, sans-serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; text-wrap: balance; }
h1 { font-size: 2rem; margin: 8px 0 6px; }
h2 { font-size: 1.2rem; margin: 30px 0 8px; }
p, li { max-width: 70ch; }
a { color: var(--accent); }
.volver { font-size: 0.9rem; text-decoration: none; }
.fecha { color: var(--ink-faint); font-size: 0.85rem; margin-bottom: 26px; }
.aviso {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 16px; font-size: 0.9rem; color: var(--ink-soft); margin: 18px 0;
}
table { border-collapse: collapse; width: 100%; font-size: 0.92rem; margin: 14px 0; }
th, td { text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--ink-faint); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
li { margin-bottom: 6px; }
li::marker { color: var(--accent); }
