/* Reset & base styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, sans-serif;
  background-color: #1e1e1e;
  color: #e0e0e0;
  line-height: 1.6;
  padding: 2rem;
}
a {
  color: #9bdfff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Headers */
h1, h2, h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

/* Grid homepage */
.homepage main.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.homepage section h2 {
  border-bottom: 1px solid #444;
  margin-bottom: 0.5rem;
}

/* Content page spacing */
.content-page article {
  max-width: 60ch;
  margin: auto;
}
.content-page .byline {
  font-size: 0.9em;
  color: #aaa;
}

/* Sitemap */
.sitemap pre {
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: #ccc;
}
