/* Triad NC Events — minimal first-deploy stylesheet.
   The daily pipeline (06-publish) will replace/extend this. */
:root {
  --ink: #1a202c;
  --muted: #4a5568;
  --line: #e2e8f0;
  --accent: #b45309;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.6;
}

header {
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem;
}

header a {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

main {
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.25rem;
}

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

.empty { color: var(--muted); }

footer {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding: 1rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}
