/* Prisma — deep-navy opinion-led */
:root {
  --bg: #f4f5f8;
  --surface: #fff;
  --navy: #0f1b2d;
  --navy-mid: #1e3a5f;
  --text: #2a3544;
  --muted: #6b7a8d;
  --accent: #c9a227;
  --border: #dde2ea;
  --container: 1140px;
  --radius: 6px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-head: Georgia, "Times New Roman", serif;
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s5: 48px;
}
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); line-height: 1.6; color: var(--text); background: var(--bg); }
a { color: var(--navy-mid); }
img, svg { display: block; max-width: 100%; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s2); }
.site-header { background: var(--navy); color: #fff; position: sticky; top: 0; z-index: 100; transition: box-shadow .2s; }
.site-header.is-shrunk { box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: var(--s2) 0; }
.logo { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; }
.nav-main { display: flex; gap: var(--s3); }
.nav-main a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.nav-main a:hover { color: #fff; }
.menu-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,.3); color: #fff; padding: 6px 12px; border-radius: var(--radius); cursor: pointer; }
.category-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: var(--s1) 0; }
.category-bar .container { display: flex; gap: var(--s2); flex-wrap: wrap; }
.cat-tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); text-decoration: none; }
.cat-tag:hover { color: var(--navy); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s3); padding: var(--s4) 0; }
.hero-text h1 { font-family: var(--font-head); font-size: 2.2rem; line-height: 1.15; color: var(--navy); margin: 0 0 var(--s2); }
.hero-lead { font-size: 1.1rem; color: var(--muted); }
.hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px rgba(15,27,45,.12); }
.main-layout { display: grid; grid-template-columns: 1fr 300px; gap: var(--s4); padding-bottom: var(--s5); }
.article-row { display: grid; grid-template-columns: 200px 1fr; gap: var(--s2); padding: var(--s2) 0; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; }
.article-row:hover .row-title { color: var(--navy-mid); }
.row-thumb { border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.row-meta { font-size: .75rem; text-transform: uppercase; color: var(--muted); letter-spacing: .04em; }
.row-title { font-family: var(--font-head); font-size: 1.15rem; margin: 4px 0; color: var(--navy); }
.row-excerpt { font-size: .9rem; color: var(--muted); }
.card-shadow { background: var(--surface); border-radius: var(--radius); box-shadow: 0 2px 12px rgba(15,27,45,.08); padding: var(--s2); margin-bottom: var(--s2); }
.sidebar h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 var(--s2); }
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar li { margin-bottom: var(--s1); font-size: .9rem; }
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: var(--s4) 0; margin-top: var(--s5); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer h4 { color: #fff; font-size: .85rem; text-transform: uppercase; margin: 0 0 var(--s2); }
.article-page { max-width: 720px; margin: 0 auto; padding: var(--s4) var(--s2); }
.article-page h1 { font-family: var(--font-head); font-size: 2rem; color: var(--navy); }
.article-meta { font-size: .8rem; text-transform: uppercase; color: var(--muted); letter-spacing: .04em; }
.pull-quote { border-left: 3px solid var(--accent); padding-left: var(--s2); font-family: var(--font-head); font-size: 1.25rem; font-style: italic; color: var(--navy-mid); margin: var(--s3) 0; }
.page-content { max-width: 720px; margin: 0 auto; padding: var(--s4) var(--s2); }
.page-content h1 { font-family: var(--font-head); color: var(--navy); }
.related { margin-top: var(--s4); padding-top: var(--s3); border-top: 1px solid var(--border); }
.related h3 { font-size: .85rem; text-transform: uppercase; color: var(--muted); }
.author-box { display: flex; gap: var(--s2); align-items: center; margin: var(--s3) 0; padding: var(--s2); background: var(--surface); border-radius: var(--radius); }
.author-box img { width: 56px; height: 56px; border-radius: 50%; }
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); color: #fff; padding: var(--s2); display: none; z-index: 200; }
.cookie-bar.is-visible { display: flex; justify-content: center; align-items: center; gap: var(--s2); flex-wrap: wrap; font-size: .9rem; }
.cookie-bar button { background: var(--accent); border: none; color: var(--navy); padding: 8px 20px; border-radius: var(--radius); cursor: pointer; font-weight: 600; }
.mobile-nav { display: none; background: var(--navy-mid); padding: var(--s2); }
.mobile-nav a { display: block; color: #fff; padding: 8px 0; text-decoration: none; }
@media (max-width: 900px) {
  .hero-grid, .main-layout, .footer-grid { grid-template-columns: 1fr; }
  .article-row { grid-template-columns: 1fr; }
  .nav-main { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.is-open { display: block; }
}
