:root {
  --bg: #ffffff;
  --text: #1a1d21;
  --muted: #5b6470;
  --accent: #14532d;
  --border: #e5e7eb;
  --surface: #f8faf9;
  --max-width: 760px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}

header.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.wordmark {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--text);
  text-decoration: none;
}

nav.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  margin-left: 18px;
}

nav.site-nav a:hover {
  color: var(--accent);
}

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

h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 10px;
}

h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 8px;
}

p {
  margin-bottom: 14px;
}

ul, ol {
  margin: 0 0 14px 24px;
}

li {
  margin-bottom: 6px;
}

a {
  color: var(--accent);
}

.lede {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 28px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}

.card h2 {
  margin-top: 0;
}

.meta {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.placeholder {
  background: #fef9c3;
  border-radius: 4px;
  padding: 0 4px;
}

footer.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 16px;
}

.footer-inner a:hover {
  color: var(--accent);
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 16px;
  font-size: 15px;
}

th, td {
  text-align: left;
  padding: 8px 10px;
  border: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: var(--surface);
}
