:root {
  --paper: #eceff2;
  --ink: #17212c;
  --ink-soft: #4a5866;
  --rule: #c8d0d8;
  --ember: #a85a32;
  --measure: 34rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0 1.5rem 6rem;
  background: var(--paper);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.62;
}

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
}

nav {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 2.25rem 0 0;
  display: flex;
  gap: 1.5rem;
  font-size: 0.9375rem;
}

nav a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

nav a:hover,
nav a:focus-visible { color: var(--ink); border-bottom-color: var(--ember); }

nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ember); }

h1 {
  margin: 3.5rem 0 0;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.dateline {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 2px solid var(--ember);
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

h2 {
  margin: 2.75rem 0 0.5rem;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.3;
}

p { margin: 0 0 1.15rem; }

.lede { font-size: 1.1875rem; margin-top: 1.75rem; }

a { color: var(--ember); text-decoration-thickness: 1px; text-underline-offset: 2px; }

a:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; }

footer {
  max-width: var(--measure);
  margin: 4rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.875rem;
}

.home-list { margin: 2rem 0 0; padding: 0; list-style: none; }
.home-list li { padding: 1.1rem 0; border-top: 1px solid var(--rule); }
.home-list li:last-child { border-bottom: 1px solid var(--rule); }
.home-list a { font-size: 1.1875rem; color: var(--ink); text-decoration: none; }
.home-list a:hover { color: var(--ember); }
.home-list p { margin: 0.3rem 0 0; color: var(--ink-soft); font-size: 0.9375rem; }

@media (max-width: 30rem) {
  h1 { font-size: 2rem; }
  body { font-size: 1rem; }
}
