/* Wiki – Wikipedia-style layout */

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

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  color: #202122;
  line-height: 1.65;
  background: #fff;
}

/* ── Typography ─────────────────────────────────────────── */

h1 {
  font-size: 2.1em;
  border-bottom: 2px solid #0645ad;
  padding-bottom: 0.3em;
  margin-top: 0;
  margin-bottom: 0.6em;
  font-weight: normal;
}

h2 {
  font-size: 1.45em;
  border-bottom: 1px solid #a2a9b1;
  padding-bottom: 0.25em;
  margin-top: 2rem;
  margin-bottom: 0.6em;
  font-weight: normal;
}

h3 {
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 0.4em;
  color: #333;
}

p {
  margin: 0.75em 0;
  text-align: justify;
  hyphens: auto;
}

a {
  color: #0645ad;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: #0b0080;
}

ul, ol {
  margin: 0.5em 0 0.75em 1.5rem;
}

li {
  margin: 0.3em 0;
}

/* ── Nav / site header ──────────────────────────────────── */

nav {
  margin-bottom: 1.25rem;
  font-size: 0.9em;
  color: #555;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.6rem;
}

nav h2 {
  border: none;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: bold;
  color: #333;
  display: inline;
}

/* ── Stat callout box ───────────────────────────────────── */

.stat-box {
  background: #f8f9fa;
  border-left: 3px solid #0645ad;
  padding: 0.6rem 0.9rem;
  margin: 0.85rem 0;
  font-size: 0.93em;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Footer ─────────────────────────────────────────────── */

footer {
  border-top: 1px solid #a2a9b1;
  margin-top: 2.5rem;
  padding-top: 0.85rem;
  font-size: 0.85em;
  color: #666;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 640px) {
  body {
    padding: 1rem 0.9rem 2.5rem;
  }

  h1 {
    font-size: 1.65em;
  }

  p {
    text-align: left;
    hyphens: none;
  }
}
