:root {
  --bg: #fbf9f5;
  --ink: #23201c;
  --muted: #6d675f;
  --rule: #e2dcd1;
  --accent: #8a5a2b;
  --measure: 34rem;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14130f;
    --ink: #e8e3da;
    --muted: #9a938a;
    --rule: #2e2b25;
    --accent: #d3a068;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
main { max-width: var(--measure); margin: 0 auto; padding: 0 1.25rem 5rem; }
header.site, footer.site {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 2rem 1.25rem;
}
header.site { display: flex; flex-wrap: wrap; gap: 1rem; align-items: baseline; justify-content: space-between; }
.brand { font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; color: var(--ink); }
nav a { margin-left: 1rem; font-size: .85rem; color: var(--muted); text-decoration: none; }
nav a:hover, .brand:hover { color: var(--accent); }
footer.site { border-top: 1px solid var(--rule); margin-top: 4rem; color: var(--muted); font-size: .85rem; }

h1 { font-size: 2rem; line-height: 1.25; margin: 1rem 0 .5rem; font-weight: normal; }
h2 { font-size: 1.3rem; font-weight: normal; margin-top: 2.5rem; }
a { color: var(--accent); text-underline-offset: 2px; }
.meta { color: var(--muted); font-size: .85rem; font-style: italic; margin-top: 0; }

.lede { font-size: 1.15rem; color: var(--muted); }
blockquote {
  margin: 2rem 0; padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
  font-style: italic; color: var(--muted);
}
blockquote cite { display: block; font-style: normal; font-size: .85rem; margin-top: .5rem; }
.sanskrit { font-style: italic; letter-spacing: .02em; }

.index { list-style: none; padding: 0; }
.index li { padding: 1.25rem 0; border-bottom: 1px solid var(--rule); }
.index h3 { margin: 0 0 .25rem; font-size: 1.15rem; font-weight: normal; }
.index h3 a { text-decoration: none; color: var(--ink); }
.index h3 a:hover { color: var(--accent); }
.index p { margin: .25rem 0 0; color: var(--muted); font-size: .95rem; }
.index time { color: var(--muted); font-size: .8rem; font-variant-numeric: tabular-nums; }

.sources { margin-top: 3rem; border-top: 1px solid var(--rule); padding-top: 1rem; font-size: .9rem; color: var(--muted); }
.sources h2 { font-size: 1rem; margin-top: 0; }
img { max-width: 100%; height: auto; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 3rem 0; }
