:root {
  --paper: #f4efe3;
  --ink: #1f1c18;
  --muted: #6d655c;
  --card: rgba(255, 255, 255, 0.72);
  --line: rgba(31, 28, 24, 0.12);
  --accent: #0f766e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(15, 118, 110, 0.15), transparent 35%),
    linear-gradient(180deg, #f8f4ea 0%, var(--paper) 100%);
}

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

.hero {
  padding: 32px 0 48px;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

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

.lede {
  width: min(640px, 100%);
  margin-top: 20px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
}

.posts {
  display: grid;
  gap: 20px;
}

.post-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(10px);
}

.post-card h2 {
  margin: 8px 0 12px;
  font-size: 1.8rem;
}

.post-card p {
  margin: 0;
  line-height: 1.7;
}

.meta {
  margin-bottom: 10px;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
