:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #52606d;
  --line: #d9e2ec;
  --paper: #ffffff;
  --wash: #f5f7fa;
  --brand: #392467;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.hero,
section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 16px;
}

.hero {
  border-top: 5px solid var(--brand);
}

.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.25;
  margin: 0;
}

h1 {
  font-size: 36px;
}

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

p {
  margin: 0 0 12px;
}

p:last-child {
  margin-bottom: 0;
}

.summary {
  color: var(--muted);
  font-size: 18px;
  margin-top: 12px;
}

.date {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
}

ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
}

a {
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 20px, 920px);
    padding: 24px 0 40px;
  }

  .hero,
  section {
    padding: 20px;
  }

  h1 {
    font-size: 30px;
  }
}
