:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #52635c;
  --paper: #f7f4ed;
  --line: #d8d0c2;
  --accent: #b6362b;
  --leaf: #1f6f5b;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(120deg, rgba(31, 111, 91, 0.12), transparent 38%),
    linear-gradient(240deg, rgba(182, 54, 43, 0.1), transparent 42%),
    var(--paper);
  color: var(--ink);
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(820px, 100%);
  border-left: 5px solid var(--accent);
  padding: 18px 0 22px 28px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.article-list {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-list a,
.top-nav a,
.article a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.article-shell {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 24px 56px;
}

.top-nav {
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.article {
  font-size: 1.05rem;
  line-height: 1.82;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.article h1 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.12;
  word-break: break-all;
}

.article h2 {
  margin: 38px 0 14px;
  font-size: 1.28rem;
  line-height: 1.35;
}

.article p,
.article li {
  color: var(--ink);
}

.article ul {
  padding-left: 1.2rem;
}

@media (max-width: 560px) {
  .shell {
    place-items: end start;
    padding: 24px;
  }

  .hero {
    padding-left: 20px;
  }

  .article-shell {
    padding: 24px 18px 48px;
    overflow-x: hidden;
  }

  .article {
    font-size: 1rem;
    line-height: 1.78;
  }

  .article h1 {
    font-size: 1.55rem;
    line-height: 1.24;
  }
}
