:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5c564c;
  --line: #e6e1d8;
  --brass: #c9a74a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Marcellus, Georgia, serif;
  font-synthesis: none;
  line-height: 1.5;
}

a { color: inherit; }

.wrap {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 8px;
}

.top img {
  height: 36px;
  width: auto;
}

.top a {
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

h1 {
  margin: 28px 0 8px;
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 400;
  line-height: 1.1;
}

h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 14px;
  background: var(--brass);
}

.dated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
}

h2 {
  margin: 32px 0 8px;
  font-size: 26px;
  font-weight: 400;
}

p, li { font-size: 18px; }

ul { padding-left: 1.2em; }

li + li { margin-top: 8px; }

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 36px 0 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}

.links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.license {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 16px;
}
