:root {
  --bg: #f7f7f8;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --accent: #0f172a;
  --brand: #0ea5a4;
  --maxw: 980px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* { box-sizing: border-box; }
body.page {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.nav {
  background: var(--card);
  padding: 14px 18px;
  box-shadow: 0 1px 8px rgba(15,23,42,0.04);
}
.brand { font-weight: 700; color: var(--brand); text-decoration: none; font-size: 1.05rem; }

.container { max-width: var(--maxw); margin: 36px auto; padding: 0 18px; }

.home-header .lead { color: var(--muted); margin-top: 6px; }

.post { background: var(--card); padding: 28px; border-radius: 10px; box-shadow: 0 6px 24px rgba(15,23,42,0.04); }
.post-title { margin: 0 0 6px 0; font-size: 28px; line-height: 1.08; }
.meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }

.post-content { color: var(--text); line-height: 1.75; font-size: 1rem; }
.post-content img { max-width: 100%; height: auto; border-radius: 6px; margin: 12px 0; }

.posts-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.posts-list li { background: var(--card); padding: 14px 16px; border-radius: 8px; display:flex; justify-content: space-between; align-items:center; box-shadow: 0 2px 8px rgba(15,23,42,0.03); }
.posts-list a { color: var(--accent); text-decoration: none; font-weight:600; }
.date { color: var(--muted); font-size: 0.85rem; }

.footer { padding: 20px; text-align:center; color: var(--muted); margin-top: 28px; }
