/* Dysprosium Law Blog — minimal, semantic, ingest-friendly */

:root {
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --rule: #d8d4ca;
  --paper: #faf8f3;
  --accent: #6b3410;
  --link: #1f4480;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}

body {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

header.site-header {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

header.site-header h1 {
  font-size: 2.2rem;
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}

header.site-header h1 a {
  color: var(--ink);
  text-decoration: none;
}

header.site-header .tagline {
  color: var(--muted);
  font-style: italic;
  margin: 0;
  font-size: 1rem;
}

nav.site-nav {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

nav.site-nav a {
  color: var(--link);
  margin-right: 1rem;
  text-decoration: none;
}

nav.site-nav a:hover { text-decoration: underline; }

main { margin-top: 1rem; }

article.post {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

article.post:last-child { border-bottom: none; }

article.post h2 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}

article.post h2 a {
  color: var(--ink);
  text-decoration: none;
}

article.post h2 a:hover { color: var(--accent); }

.post-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.post-meta .tag {
  display: inline-block;
  background: #e8e3d6;
  color: var(--ink);
  padding: 0 0.4rem;
  margin-right: 0.3rem;
  border-radius: 2px;
  font-size: 0.8rem;
}

.excerpt { color: #333; }

article.full h1 {
  font-size: 2rem;
  margin: 0 0 0.4rem;
  line-height: 1.25;
}

article.full h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.2rem;
}

article.full h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

article.full p { margin: 0 0 1rem; }

article.full ul, article.full ol { margin: 0 0 1rem 1.25rem; }

article.full blockquote {
  border-left: 3px solid var(--accent);
  margin: 1rem 0;
  padding: 0.25rem 0 0.25rem 1rem;
  color: #333;
  font-style: italic;
}

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

footer.site-footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.85rem;
}

.archive-year {
  font-size: 1.5rem;
  margin: 2rem 0 0.5rem;
  color: var(--accent);
}

.archive-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.archive-list li {
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--rule);
}

.archive-list .date {
  color: var(--muted);
  font-size: 0.9rem;
  display: inline-block;
  width: 8em;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
}

.post-nav .prev::before { content: "← "; }
.post-nav .next::after { content: " →"; }
