/* Minimal, readable, Drudge-style inspired without heavy UI */
:root {
  --bg: #f7f7f7;
  --ink: #111;
  --muted: #666;
  --accent: #1a73e8;
  --card: #fff;
  --border: #e5e5e5;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--ink); background: var(--bg); }
.site-header { padding: 24px 16px; text-align: center; border-bottom: 1px solid var(--border); background: #fff; position: sticky; top: 0; z-index: 10; }
.brand { letter-spacing: 3px; font-weight: 800; margin: 0; }
.tagline { color: var(--muted); margin: 8px 0 16px; }
.search-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.search-row input, .search-row select, .search-row button { padding: 10px 12px; border: 1px solid var(--border); background: #fff; border-radius: 8px; font-size: 14px; }
.search-row button { cursor: pointer; }
.results { max-width: 900px; margin: 24px auto; padding: 0 12px 60px; display: grid; gap: 14px; }
.item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.item .title { margin: 0 0 6px; font-size: 18px; line-height: 1.25; }
.item .title a { text-decoration: none; color: var(--ink); }
.item .title a:hover { color: var(--accent); text-decoration: underline; }
.meta { font-size: 13px; color: var(--muted); display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.meta .dot { color: #bbb; }
.notes { font-size: 14px; margin: 10px 0; color: #333; }
.links { display: flex; gap: 12px; flex-wrap: wrap; margin: 8px 0; }
.links a { font-weight: 600; color: var(--accent); text-decoration: none; }
.links a:hover { text-decoration: underline; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tags .tag { font-size: 12px; background: #f0f3f9; border: 1px solid #e2e8f6; color: #365; padding: 3px 8px; border-radius: 999px; }
.site-footer { text-align: center; padding: 24px; color: var(--muted); }
