:root {
  color-scheme: light;
  --cream: #faf6eb;
  --ink: #171717;
  --muted: #6b6b6b;
  --accent: #e6812f;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.shell { width: min(980px, calc(100% - 32px)); margin: 0 auto; padding: 40px 0 80px; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.topbar a { color: inherit; text-decoration: none; }
h1, h2 { font-family: Nunito, -apple-system, BlinkMacSystemFont, sans-serif; margin: 0; }
h1 { font-size: clamp(2.2rem, 7vw, 4.4rem); }
.subtitle, .meta { color: var(--muted); }
.filters { display: flex; gap: 10px; overflow-x: auto; padding: 8px 0 20px; }
.filters button { border: 0; border-radius: 999px; background: #fff; padding: 11px 16px; font-weight: 700; white-space: nowrap; cursor: pointer; }
.filters button.active { background: var(--ink); color: #fff; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card { display: block; background: #fff; border-radius: 24px; padding: 14px; color: inherit; text-decoration: none; box-shadow: 0 10px 28px rgba(28, 20, 9, .06); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 18px; }
.card h2 { margin-top: 14px; font-size: 1.5rem; }
.card p { color: var(--muted); line-height: 1.5; }
.badge { display: inline-block; margin-top: 12px; color: var(--accent); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.article { background: #fff; border-radius: 28px; padding: clamp(18px, 5vw, 46px); }
.article img { width: 100%; max-height: 600px; object-fit: cover; border-radius: 22px; }
.article h1 { font-size: clamp(2rem, 6vw, 3.6rem); margin: 26px 0 10px; }
.article p { font-size: 1.08rem; line-height: 1.75; }
.notice { padding: 16px; border-radius: 16px; background: #fff2dd; line-height: 1.5; }
@media (max-width: 700px) { .grid { grid-template-columns: 1fr; } .shell { padding-top: 24px; } }
