/* Minimal blog styling — looks like a real independent notes site */
:root {
  --fg: #1a1a1a;
  --muted: #666;
  --bg: #fafaf7;
  --accent: #2a5d8f;
  --border: #e6e6e0;
  --max: 720px;
}
* { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Georgia, serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  margin: 0;
  padding: 0;
}
header, main, footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem;
}
header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
header h1 {
  font-size: 1.4rem;
  margin: 0 0 0.5rem 0;
}
header h1 a { color: var(--fg); text-decoration: none; }
nav a {
  color: var(--accent);
  text-decoration: none;
  margin-right: 1rem;
  font-size: 0.95rem;
}
nav a:hover { text-decoration: underline; }
h2 { font-size: 1.15rem; margin-top: 2rem; }
h3 { font-size: 1.05rem; margin: 0 0 0.3rem 0; }
h3 a { color: var(--fg); text-decoration: none; }
h3 a:hover { color: var(--accent); }
.meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0.2rem 0 0.5rem 0;
}
article.preview {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
article.preview:last-child { border-bottom: none; }
article p { margin: 0.5rem 0; }
blockquote {
  border-left: 3px solid var(--accent);
  margin: 1rem 0;
  padding: 0.3rem 1rem;
  color: var(--muted);
  font-style: italic;
}
pre {
  background: #f0f0eb;
  padding: 0.8rem;
  border-radius: 4px;
  overflow-x: auto;
  font-size: 0.85rem;
}
footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 3rem;
}
.byline { color: var(--muted); font-size: 0.9rem; }
