@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400;500;600;700&family=Wix+Madefor+Text:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #000000;
  --ink-muted: #555555;
  --paper: #ffffff;
  --paper-alt: #f2f2f2;
  --line: #cccccc;
  --accent: #ffbd16;
  --font-display: "Wix Madefor Display", sans-serif;
  --font-text: "Wix Madefor Text", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--paper-alt);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(900px, 92vw);
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
}

.simple-header h1 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.simple-header p {
  margin: 0 0 2rem;
  color: var(--ink-muted);
}

.post-list {
  display: grid;
  gap: 1.5rem;
}

.post-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
}

.post-date {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
}

.post-item h2 {
  font-family: var(--font-display);
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
}

.excerpt {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.read-more::after {
  content: "→";
  color: var(--accent);
}

.simple-footer {
  margin-top: 2.5rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}
