:root {
  --bg: #f6f3ee;
  --fg: #26231f;
  --muted: #7a7166;
  --accent: #a2552b;
  --line: #e2dcd2;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #1b1916; --fg: #e9e4dc; --muted: #9b9185; --accent: #d48a5c; --line: #34302b; }
}
* { box-sizing: border-box; }
html { font-size: 17px; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: Georgia, "PT Serif", "Times New Roman", serif; line-height: 1.65;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
header, main, footer { max-width: 760px; margin: 0 auto; padding: 0 18px; }
header { display: flex; justify-content: space-between; align-items: baseline; padding-top: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
header .logo { font-size: 1.35rem; color: var(--fg); letter-spacing: .02em; }
header nav a { margin-left: 18px; font-family: -apple-system, "Segoe UI", Roboto, sans-serif; font-size: .88rem; color: var(--muted); }
h1 { font-weight: normal; font-size: 1.9rem; line-height: 1.25; margin: 34px 0 6px; }
h2 { font-weight: normal; font-size: 1.3rem; margin: 30px 0 8px; }
.meta { font-family: -apple-system, "Segoe UI", Roboto, sans-serif; font-size: .82rem; color: var(--muted); }
figure { margin: 26px 0; }
figure img { width: 100%; height: auto; display: block; border-radius: 2px; }
figcaption { font-size: .85rem; color: var(--muted); margin-top: 6px; font-style: italic; }
.posts { list-style: none; padding: 0; margin: 24px 0; }
.posts li { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.posts img { width: 180px; height: 120px; object-fit: cover; border-radius: 2px; }
.posts h2 { margin: 0 0 4px; font-size: 1.15rem; }
.posts p { margin: 6px 0 0; font-size: .95rem; }
@media (max-width: 560px) {
  .posts li { grid-template-columns: 1fr; }
  .posts img { width: 100%; height: auto; }
}
table { border-collapse: collapse; width: 100%; font-size: .92rem; margin: 16px 0; }
th, td { text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--line); }
footer { padding-top: 26px; padding-bottom: 40px; margin-top: 40px; border-top: 1px solid var(--line); font-family: -apple-system, "Segoe UI", Roboto, sans-serif; font-size: .8rem; color: var(--muted); }
