@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700;800&display=swap');
:root { --ink:#182026; --muted:#5e6a76; --line:#dfe6ea; --card:#ffffff; --accent:#0d5e86; --bg:#edf4f8; --hero:#0c1b2a; --hero2:#102f44; }
* { box-sizing:border-box; }
body { margin:0; color:var(--ink); background:linear-gradient(180deg,#f7fbfd 0,#edf4f8 45%,#e7eff4 100%); font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif; }
a { color:var(--accent); text-decoration:none; }
a:hover { text-decoration:underline; }
.container { max-width:1180px; margin:0 auto; padding:0 20px; }
.site-header { position:sticky; top:0; backdrop-filter:saturate(140%) blur(8px); background:rgba(247,251,253,.82); border-bottom:1px solid rgba(223,230,234,.85); z-index:10; }
.site-header .inner { height:72px; display:flex; align-items:center; justify-content:space-between; gap:12px; }
.logo { font-weight:800; letter-spacing:.16em; color:#102131; }
.nav { display:flex; gap:16px; align-items:center; }
.btn { display:inline-block; border:1px solid #0f5679; background:#0d5e86; color:#fff; padding:10px 14px; border-radius:10px; font-weight:600; }
.btn:hover { text-decoration:none; filter:brightness(1.03); }
.btn.ghost { background:transparent; color:#103247; border-color:#b9ccd7; }
.hero { background:radial-gradient(circle at 20% 20%, #214764 0%, var(--hero2) 38%, var(--hero) 100%); color:#eef7ff; padding:54px 0 42px; border-bottom:1px solid rgba(255,255,255,.08); }
.hero-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:24px; align-items:start; }
.eyebrow { text-transform:uppercase; letter-spacing:.18em; font-size:.78rem; opacity:.8; }
.hero h1 { margin:.4rem 0 .8rem; font-size:clamp(2rem,4vw,3.3rem); line-height:1.04; }
.hero p { margin:0; color:#d5e8f7; max-width:62ch; line-height:1.55; }
.hero-panel { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:16px; }
.hero-panel h3 { margin:0 0 8px; font-size:1rem; }
.hero-panel ul { margin:0; padding-left:18px; color:#d8ebf8; line-height:1.55; }
.section { padding:26px 0; }
.section h2 { margin:0 0 10px; font-size:1.35rem; }
.muted { color:var(--muted); }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.grid-2 { display:grid; grid-template-columns:1.1fr .9fr; gap:16px; }
.card { background:var(--card); border:1px solid var(--line); border-radius:14px; padding:16px; box-shadow:0 4px 14px rgba(12,27,42,.04); }
.tag { display:inline-block; padding:3px 8px; border-radius:999px; border:1px solid #cddbe4; font-size:.78rem; color:#355366; background:#f7fbfd; }
.card .tag { margin-bottom:10px; }
.card h2 { margin-top:0; }
.stack { display:grid; gap:12px; }
.article-list { display:grid; gap:10px; }
.article-item { padding:12px; border:1px solid var(--line); border-radius:10px; background:#fff; }
.article-thumb { margin:-12px -12px 12px; aspect-ratio:16/9; overflow:hidden; border-bottom:1px solid var(--line); background:#dfeaf1; }
.article-thumb img { display:block; width:100%; height:100%; object-fit:cover; }
.article-item h3 { margin:2px 0 4px; font-size:1rem; }
.article-item p { margin:0; color:var(--muted); font-size:.93rem; }
.hero-panel,
.section .card,
.article-item {
  border-color: var(--line) !important;
  outline: none !important;
  box-shadow: 0 4px 14px rgba(12,27,42,.04) !important;
}
.footer { border-top:1px solid var(--line); padding:24px 0 40px; color:var(--muted); font-size:.92rem; }
.prose p { line-height:1.7; }
.prose blockquote { margin:16px 0; padding:12px 14px; border-left:3px solid #9cb8c8; background:#f8fbfd; }
.prose pre { white-space:pre-wrap; background:#f6fafc; border:1px solid var(--line); border-radius:10px; padding:12px; }
.meta-line { color:var(--muted); font-size:.9rem; margin-bottom:10px; }
.entity-hero-image { margin:18px 0 8px; border-radius:14px; overflow:hidden; border:1px solid var(--line); background:#e4edf3; }
.entity-hero-image img { display:block; width:100%; height:auto; }
.attr-table { width:100%; border-collapse:collapse; }
.attr-table td { border-bottom:1px solid var(--line); padding:8px 6px; vertical-align:top; }
@media (max-width: 960px) { .hero-grid,.grid-3,.grid-2 { grid-template-columns:1fr; } .nav { gap:10px; } }
