/* Purposecraft — Awakenings (Plainspoken Depth)
   Minimal, readable, durable.
*/

:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #4a4a4a;
  --rule: rgba(0,0,0,.12);
  --max: 72ch;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  line-height: 1.65;
  font-size: 18px;
}

@media (min-width: 720px){
  html, body{ font-size: 19px; }
}

a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

a:hover{
  text-decoration-thickness: 2px;
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.header{
  margin-bottom: 28px;
}

.kicker{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

h1{
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 600;
}

@media (min-width: 720px){
  h1{ font-size: 40px; }
}

.meta{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.rule{
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 22px 0 28px;
}

.content p{
  margin: 0 0 16px;
}

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

.footer{
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
}

.footer a{
  color: inherit;
}

.nav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.small{
  font-size: 13px;
  color: var(--muted);
}
