:root {
  --text: #111827;
  --body: #4b5563;
  --border: #e5e7eb;
  --bg: #ffffff;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 64px 32px;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 32px;
}

/* Typography */

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin: 3rem 0 1rem;
}

p {
  font-size: 1.15rem;
  margin: 0 0 2rem;
}

ol {
  margin: 0 0 3rem 1.5rem;
  padding: 0;
}

ol li {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

a:link {
  color: black;
  text-underline-offset: 4px;
}

strong {
  color: var(--text);
  font-weight: 600;
}

/* Table */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

thead th {
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  padding: 0 0 1rem;
  border-bottom: 2px solid var(--border);
}

tbody td {
  font-size: 1.05rem;
  color: var(--body);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* Make columns roughly match the screenshot */

thead th:first-child,
tbody td:first-child {
  width: 45%;
}

thead th:last-child,
tbody td:last-child {
  width: 55%;
}