:root {
  color-scheme: light;
  --paper: #f6f3ec;
  --ink: #23231f;
  --muted: #66635d;
  --accent: #963b32;
  --rule: #cfcac0;
  --soft: #ede9e0;
  --sans: Arial,Helvetica,sans-serif;
  --serif: Georgia,'Times New Roman',serif;
}
:root[data-theme=dark] {
  color-scheme: dark;
  --paper: #1d201e;
  --ink: #eee9de;
  --muted: #b3b2a8;
  --accent: #ed9b8b;
  --rule: #454a43;
  --soft: #282d28;
}
@media (prefers-color-scheme:dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --paper: #1d201e;
    --ink: #eee9de;
    --muted: #b3b2a8;
    --accent: #ed9b8b;
    --rule: #454a43;
    --soft: #282d28;
  }
}
* {
  box-sizing: border-box;
}
html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.6;
}
a {
  color: inherit;
  text-underline-offset: .2em;
}
a:hover {
  color: var(--accent);
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: .6;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
::selection {
  background: var(--accent);
  color: var(--paper);
}
.site-wrap {
  max-width: 1160px;
  padding: 0 36px;
  margin: auto;
}
.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  padding: 10px;
  background: var(--ink);
  color: var(--paper);
  z-index: 99;
}
.skip-link:focus {
  top: 8px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.accent {
  color: var(--accent);
}
.masthead {
  padding-top: 24px;
}
.edition-line {
  display: flex;
  justify-content: space-between;
  letter-spacing: .16em;
  font: 10px var(--sans);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}
.wordmark {
  display: block;
  text-align: center;
  font-size: clamp(42px,7.8vw,91px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.065em;
  text-decoration: none;
  margin: 26px 0 8px;
}
.wordmark span {
  color: var(--accent);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.08em;
}
.tagline {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  margin: 0 0 27px;
}
.masthead nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 3px double var(--ink);
  border-bottom: 1px solid var(--ink);
  font: 12px var(--sans);
  letter-spacing: .025em;
  min-height: 52px;
}
.nav-links,
.nav-tools {
  display: flex;
  gap: 28px;
  align-items: center;
}
.masthead nav a {
  text-decoration: none;
}
.masthead nav a[aria-current=page] {
  color: var(--accent);
  font-weight: 700;
}
.theme-toggle {
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  padding: 8px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--ink);
  padding: 45px 0 27px;
}
.eyebrow {
  font: 10px var(--sans);
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.section-heading h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -.055em;
  font-weight: 400;
  margin: 12px 0;
}
.section-heading p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}
.story-count {
  font: 10px var(--sans);
  letter-spacing: .12em;
  white-space: nowrap;
  padding-bottom: 4px;
  color: var(--muted);
}
.post-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 36px;
  border-bottom: 1px solid var(--rule);
  padding: 36px 0;
}
.post-index {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.row-date {
  font: 11px var(--sans);
  color: var(--muted);
}
.post-summary h2 {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.post-summary h2 a {
  text-decoration: none;
}
.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font: 11px/1.8 var(--sans);
}
.excerpt {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
  margin: 15px 0;
}
.read-link {
  font: 11px var(--sans);
  text-decoration: none;
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  padding: 9px 0;
}
.read-link span[aria-hidden] {
  margin-left: 9px;
}
.empty-state {
  text-align: center;
  padding: 80px 20px;
}
.empty-state h2 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -.035em;
  margin: 20px 0 8px;
}
.empty-state p {
  color: var(--muted);
  max-width: 440px;
  margin: 12px auto;
}
.empty-mark {
  display: inline-block;
  padding: 18px 0;
  border-block: 3px double var(--rule);
  font-size: 30px;
  font-style: italic;
  color: var(--accent);
}
.pagination {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  font: 12px var(--sans);
}
.site-footer {
  border-top: 3px double var(--ink);
  margin-top: 64px;
  padding: 30px 0 24px;
  position: relative;
}
.footer-brand {
  font-size: 24px;
  letter-spacing: -.04em;
  font-weight: 700;
  text-decoration: none;
}
.site-footer p {
  font: 12px/1.8 var(--sans);
  color: var(--muted);
}
.site-footer > div {
  display: flex;
  gap: 25px;
  font: 11px var(--sans);
  position: absolute;
  right: 0;
  top: 42px;
}
.site-footer > div a {
  text-decoration: none;
}
.site-footer .footer-note {
  border-top: 1px solid var(--rule);
  margin: 25px 0 0;
  padding-top: 18px;
  font-size: 10px;
  letter-spacing: .08em;
}
.article {
  max-width: 730px;
  margin: 60px auto;
}
.article-heading {
  margin-bottom: 36px;
}
.article h1 {
  font-size: clamp(38px,5vw,61px);
  letter-spacing: -.055em;
  line-height: 1.08;
  font-weight: 400;
  margin: 16px 0 22px;
  overflow-wrap: anywhere;
}
.standfirst {
  font-size: 23px;
  line-height: 1.6;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 30px;
  margin-top: 25px;
}
.prose {
  font-size: 19px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}
.prose p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.prose h2,
.prose h3,
.prose h4 {
  line-height: 1.25;
  letter-spacing: -.025em;
  margin-top: 1.6em;
}
.prose h2 {
  font-size: 32px;
}
.prose h3 {
  font-size: 25px;
}
.prose a {
  color: var(--accent);
}
.prose blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 26px;
  margin: 30px 0;
  color: var(--muted);
  font-style: italic;
  font-size: 23px;
}
.prose blockquote p {
  text-align: left;
}
.prose pre {
  white-space: pre;
  overflow-x: auto;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--rule);
  font: 13px/1.75 ui-monospace,monospace;
  border-radius: 2px;
  hyphens: none;
}
.prose :not(pre) > code {
  font-size: .8em;
  background: var(--soft);
  padding: 2px 4px;
  hyphens: none;
}
.prose figure {
  margin: 34px 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  display: block;
}
.prose figcaption {
  font: 12px/1.6 var(--sans);
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.table-scroll {
  overflow-x: auto;
  margin: 28px 0;
}
.prose table {
  border-collapse: collapse;
  min-width: 100%;
  font-size: 15px;
  text-align: left;
}
.prose th,
.prose td {
  padding: 10px 14px;
  border: 1px solid var(--rule);
  min-width: 100px;
}
.prose th {
  background: var(--soft);
  font-family: var(--sans);
  font-size: 12px;
}
.article-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  margin-top: 38px;
  padding-top: 20px;
  font: 11px var(--sans);
}
.article-tags span {
  color: var(--muted);
}
.back-link {
  display: inline-block;
  margin-top: 36px;
  font: 12px var(--sans);
  color: var(--accent);
}
.archive-year {
  display: grid;
  grid-template-columns: 130px 1fr;
  margin: 40px 0;
}
.archive-year h2 {
  font-size: 35px;
  font-weight: 400;
  margin: 0;
}
.archive-year ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-year li {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.archive-year time {
  display: block;
  font: 11px var(--sans);
  color: var(--muted);
  margin-bottom: 7px;
}
.archive-year a {
  font-size: 23px;
  text-decoration: none;
}
.search-page {
  max-width: 850px;
  margin: auto;
  min-height: 440px;
}
#search-form {
  padding-top: 30px;
}
#search-form label {
  display: block;
  font: 11px var(--sans);
  margin-bottom: 10px;
}
.search-control {
  display: flex;
  border: 1px solid var(--ink);
}
.search-control input {
  flex: 1;
  min-width: 0;
  padding: 17px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
}
.search-control button {
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font: 12px var(--sans);
  padding: 0 22px;
}
#search-status {
  font: 12px var(--sans);
  color: var(--muted);
  padding: 15px 0;
}
.search-result {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.search-result h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 8px 0;
}
.search-result h2 a {
  text-decoration: none;
}
.search-result p {
  color: var(--muted);
}
.preview-banner {
  background: var(--accent);
  color: var(--paper);
  text-align: center;
  padding: 8px;
  font: 10px var(--sans);
  letter-spacing: .1em;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal {
  color: var(--accent);
}
.hljs-string,
.hljs-title,
.hljs-attr {
  color: #476b4b;
}
.hljs-comment {
  color: var(--muted);
  font-style: italic;
}
:root[data-theme=dark] .hljs-string,
:root[data-theme=dark] .hljs-title,
:root[data-theme=dark] .hljs-attr {
  color: #aed5af;
}
@media (max-width:650px) {
  .site-wrap {
    padding: 0 20px;
  }
  .masthead {
    padding-top: 17px;
  }
  .edition-line {
    font-size: 8px;
    letter-spacing: .09em;
  }
  .wordmark {
    margin-top: 25px;
    font-size: clamp(36px,9.3vw,61px);
  }
  .tagline {
    font-size: 12px;
    margin-bottom: 23px;
  }
  .nav-links,
  .nav-tools {
    gap: 16px;
  }
  .masthead nav {
    font-size: 11px;
  }
  .section-heading {
    padding-top: 32px;
    gap: 12px;
  }
  .section-heading h1 {
    font-size: 42px;
  }
  .section-heading p {
    font-size: 14px;
    max-width: 260px;
  }
  .story-count {
    font-size: 8px;
  }
  .post-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 27px 0;
  }
  .post-index {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 0;
  }
  .post-summary h2 {
    font-size: 29px;
  }
  .excerpt {
    font-size: 17px;
  }
  .site-footer > div {
    position: static;
    margin-top: 25px;
    flex-wrap: wrap;
  }
  .article {
    margin-top: 38px;
  }
  .article h1 {
    font-size: 42px;
  }
  .prose {
    font-size: 17px;
    line-height: 1.8;
  }
  .standfirst {
    font-size: 20px;
  }
  .prose blockquote {
    font-size: 20px;
  }
  .archive-year {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .search-control input {
    font-size: 16px;
    padding: 14px 10px;
  }
  .search-control button {
    padding: 0 14px;
  }
  .empty-state {
    padding: 55px 0;
  }
  .empty-state h2 {
    font-size: 28px;
  }
}
@media (max-width:380px) {
  .nav-links,
  .nav-tools {
    gap: 12px;
  }
  .masthead nav {
    font-size: 10px;
  }
  .wordmark {
    font-size: 34px;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
}
