:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #444444;
  --rule: #cfcfcf;
  --link: #111111;
  --max: 760px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--fg);
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.kicker {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.lede,
.note,
.provenance,
.project-files {
  color: var(--fg);
}

.important-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.separator {
  text-align: center;
  letter-spacing: 0.2em;
  margin: 1.75rem 0 2rem;
  color: var(--muted);
}

h2 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

ul {
  padding-left: 1.4em;
  margin-bottom: 1.5rem;
}

li + li {
  margin-top: 0.45rem;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

a:hover,
a:focus {
  text-decoration-thickness: 2px;
}

.muted {
  color: var(--muted);
}

footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  body {
    font-size: 18px;
  }

  main {
    padding: 36px 18px 56px;
  }

  h1 {
    font-size: 1.7rem;
  }
}
