/* Tailwind CDN placeholder — replace with a local built CSS file for production */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,500;6..72,600;6..72,700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; }

/* Prose styles for article content */
.prose { color: #111827; line-height: 1.75; }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 1rem; }
.prose h3 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 0.75rem; }
.prose p  { margin: 0 0 1.25rem; }
.prose a  { color: #2563eb; text-decoration: underline; }
.prose img { max-width: 100%; border-radius: 0.5rem; margin: 1.5rem 0; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.prose blockquote { border-left: 4px solid #d1d5db; padding-left: 1rem; color: #6b7280; font-style: italic; margin: 1.5rem 0; }
.prose pre { background: #1f2937; color: #f9fafb; padding: 1rem; border-radius: 0.5rem; overflow-x: auto; margin-bottom: 1.25rem; }
.prose code { font-family: monospace; font-size: 0.875em; background: #f3f4f6; padding: 0.125rem 0.25rem; border-radius: 0.25rem; }

/* Utility classes used in templates */
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.transition { transition: all 0.2s ease; }

/* Tailwind-compatible utility subset */
.flex { display: flex; } .flex-1 { flex: 1 1 0%; } .flex-col { flex-direction: column; }
.items-center { align-items: center; } .justify-between { justify-content: space-between; }
.justify-center { justify-content: center; } .justify-end { justify-content: flex-end; }
.gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1,minmax(0,1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
@media(min-width:640px){.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(min-width:1024px){.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr));}}
.col-span-2 { grid-column: span 2/span 2; } .col-span-3 { grid-column: span 3/span 3; }
.hidden { display: none; } .block { display: block; } .inline { display: inline; } .inline-block { display: inline-block; }
.relative { position: relative; } .absolute { position: absolute; } .inset-0 { inset: 0; }
.top-1 { top: 0.25rem; } .right-1 { right: 0.25rem; }
.w-full { width: 100%; } .w-20 { width: 5rem; } .w-24 { width: 6rem; } .w-32 { width: 8rem; } .w-56 { width: 14rem; }
.h-10 { height: 2.5rem; } .h-16 { height: 4rem; } .h-24 { height: 6rem; } .h-32 { height: 8rem; }
.h-48 { height: 12rem; } .h-full { height: 100%; } .min-h-screen { min-height: 100vh; }
.max-w-sm { max-width: 24rem; margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 32rem; } .max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; } .max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.max-w-none { max-width: none; }
.overflow-hidden { overflow: hidden; } .overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }
.rounded { border-radius: 0.25rem; } .rounded-l { border-radius: 0.25rem 0 0 0.25rem; } .rounded-r { border-radius: 0 0.25rem 0.25rem 0; }
.rounded-xl { border-radius: 0.75rem; }
.border { border: 1px solid #e5e7eb; } .border-b { border-bottom: 1px solid #e5e7eb; }
.border-t { border-top: 1px solid #e5e7eb; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.05); } .shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,.07); }
.bg-white { background-color: #fff; } .bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; } .bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-700 { background-color: #374151; } .bg-gray-900 { background-color: #111827; }
.bg-blue-600 { background-color: #2563eb; } .bg-blue-100 { background-color: #dbeafe; }
.bg-green-100 { background-color: #dcfce7; } .bg-yellow-100 { background-color: #fef9c3; }
.bg-red-50 { background-color: #fef2f2; } .bg-red-100 { background-color: #fee2e2; }
.bg-red-500 { background-color: #ef4444; } .bg-black\/40 { background-color: rgba(0,0,0,.4); }
.text-white { color: #fff; } .text-gray-200 { color: #e5e7eb; } .text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; } .text-gray-500 { color: #6b7280; } .text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #111827; } .text-blue-400 { color: #60a5fa; } .text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; } .text-blue-700 { color: #1d4ed8; }
.text-green-600 { color: #16a34a; } .text-green-700 { color: #15803d; }
.text-yellow-500 { color: #eab308; } .text-yellow-700 { color: #a16207; }
.text-red-400 { color: #f87171; } .text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; } .text-red-700 { color: #b91c1c; }
.text-purple-600 { color: #9333ea; } .text-white\/80 { color: rgba(255,255,255,.8); }
.text-xs { font-size: 0.75rem; } .text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; } .text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; } .font-semibold { font-weight: 600; } .font-bold { font-weight: 700; }
.font-mono { font-family: monospace; }
.leading-tight { line-height: 1.25; } .leading-snug { line-height: 1.375; }
.uppercase { text-transform: uppercase; } .tracking-wide { letter-spacing: 0.025em; }
.italic { font-style: italic; } .underline { text-decoration: underline; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-center { text-align: center; } .text-left { text-align: left; } .text-right { text-align: right; }
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; } .mb-5 { margin-bottom: 1.25rem; } .mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; } .mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; }
.mr-3 { margin-right: 0.75rem; } .mr-4 { margin-right: 1rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.p-2 { padding: 0.5rem; } .p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pt-8 { padding-top: 2rem; }
.space-y-1>*+* { margin-top: 0.25rem; } .space-y-2>*+* { margin-top: 0.5rem; }
.space-y-3>*+* { margin-top: 0.75rem; } .space-y-4>*+* { margin-top: 1rem; }
.space-y-5>*+* { margin-top: 1.25rem; } .space-y-6>*+* { margin-top: 1.5rem; }
.divide-y>*+* { border-top: 1px solid #e5e7eb; }
.cursor-grab { cursor: grab; } .cursor-pointer { cursor: pointer; }
.opacity-0 { opacity: 0; } .opacity-100 { opacity: 1; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.duration-700 { transition-duration: 700ms; }
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(37,99,235,.5); }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-300:hover { background-color: #d1d5db; }
.hover\:bg-gray-700:hover { background-color: #374151; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px rgba(0,0,0,.07); }
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-gray-600:hover { color: #4b5563; }
.hover\:text-red-600:hover { color: #dc2626; }
.hover\:underline:hover { text-decoration: underline; }

/* Admin workspace */
:root { --ink:#18222d; --muted:#73808c; --navy:#142331; --paper:#f4f7f8; --line:#e3e9ed; --accent:#e07a4f; --mint:#dcefe9; }
.admin-shell { margin:0; background:var(--paper); color:var(--ink); font-family:'Inter',sans-serif; }
.admin-sidebar { width:260px; min-height:100vh; background:var(--navy); color:#dbe5e9; display:flex; flex-direction:column; }
.admin-brand { padding:28px 26px; display:flex; align-items:center; gap:12px; border-bottom:1px solid rgba(255,255,255,.1); letter-spacing:.01em; }
.admin-brand strong { display:block; color:#fff; font-size:16px; }.admin-brand small { display:block; color:#8ea1ad; font-size:10px; letter-spacing:.16em; text-transform:uppercase; margin-top:3px; }
.admin-brand-mark { display:grid; place-items:center; width:34px; height:34px; border-radius:10px; background:var(--accent); color:#fff; font-weight:800; font-size:18px; }
.admin-nav { padding:22px 14px; flex:1; }.admin-nav-link { display:flex; align-items:center; gap:12px; color:#9fb0ba; text-decoration:none; padding:12px 14px; border-radius:9px; font-size:13px; margin-bottom:4px; transition:.2s; }.admin-nav-link:hover { background:rgba(255,255,255,.07); color:#fff; }.admin-nav-link.is-active { color:#fff; background:#264052; box-shadow:inset 3px 0 var(--accent); }
.admin-nav-icon { width:19px; height:19px; flex:none; opacity:.88; }
.admin-user-card { display:flex; align-items:center; gap:10px; padding:18px 20px; border-top:1px solid rgba(255,255,255,.1); }.admin-avatar { width:34px; height:34px; border-radius:50%; display:grid; place-items:center; color:var(--navy); background:#f4c7a8; font-weight:700; font-size:13px; }.admin-user-meta { flex:1; min-width:0; }.admin-user-meta strong,.admin-user-meta span { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }.admin-user-meta strong { color:#fff; font-size:12px; }.admin-user-meta span { color:#8ea1ad; font-size:10px; margin-top:3px; }.admin-logout { border:0; background:none; color:#8ea1ad; font-size:18px; cursor:pointer; }
.admin-header { min-height:88px; background:#fff; border-bottom:1px solid var(--line); padding:20px 42px; display:flex; align-items:center; justify-content:space-between; }.admin-header h1 { margin:3px 0 0; font-size:25px; letter-spacing:-.03em; }.admin-eyebrow { margin:0; color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.16em; }.admin-main { flex:1; padding:38px 42px; max-width:1500px; width:100%; }.admin-alert { padding:13px 16px; border-radius:9px; margin-bottom:20px; font-size:13px; }.admin-alert-success { background:var(--mint); color:#236052; }.admin-alert-error { background:#fbe8e4; color:#9d4338; }
@media(max-width:800px){.admin-sidebar{width:72px}.admin-brand{padding:20px 18px}.admin-brand span:not(.admin-brand-mark),.admin-nav-link{font-size:0}.admin-nav-link{justify-content:center;padding:13px}.admin-nav-link .admin-nav-icon{margin:0}.admin-user-meta,.admin-logout{display:none}.admin-main{padding:24px 18px}.admin-header{padding:18px;}.admin-brand-mark{flex:none}}
.admin-form-intro { margin-bottom:18px; color:var(--muted); font-size:13px; }.admin-form-intro p { margin:5px 0 0; }.admin-kicker { color:var(--accent); font-size:10px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; }.admin-form-card { background:#fff; border:1px solid var(--line); border-radius:14px; padding:26px; box-shadow:0 8px 24px rgba(20,35,49,.04); }.admin-form-card input,.admin-form-card select { border-color:var(--line); min-height:42px; }.admin-form-card input:focus,.admin-form-card select:focus { border-color:var(--accent); outline:0; box-shadow:0 0 0 3px rgba(224,122,79,.15); }.field-error { border-color:#d76b5c !important; }.form-error { display:block; color:#b34d40; font-size:11px; margin-top:4px; }.form-hint { color:var(--muted); font-size:11px; margin-top:6px; line-height:1.5; }
.article-editor { background:#fff; border:1px solid var(--line); border-radius:8px; overflow:hidden; }.article-editor-error { border:1px solid #f87171; }.article-editor .toastui-editor-defaultUI { border:0; }.article-editor .toastui-editor-toolbar { background:#f8fafb; border-bottom:1px solid var(--line); }.article-editor .toastui-editor-contents { font-family:Inter,sans-serif; font-size:15px; line-height:1.7; }.article-editor .toastui-editor-mode-switch { background:#f8fafb; }
.fixed { position:fixed; }.z-50 { z-index:50; }.mx-4 { margin-left:1rem; margin-right:1rem; }.max-w-4xl { max-width:56rem; }.shadow-xl { box-shadow:0 20px 35px rgba(20,35,49,.2); }.shrink-0 { flex-shrink:0; }.max-w-xs { max-width:20rem; }.overflow-y-auto { overflow-y:auto; }.rounded-lg { border-radius:.5rem; }.border-2 { border-width:2px; }.border-transparent { border-color:transparent; }.hover\:border-blue-500:hover { border-color:#3b82f6; }
.bg-black\/50 { background-color:rgba(0,0,0,.5); }.col-span-6 { grid-column:span 6 / span 6; }.transition-transform { transition:transform .2s ease; }.group:hover .group-hover\:scale-105 { transform:scale(1.05); }
.cover-source-tabs { display:flex; gap:3px; padding:3px; margin-bottom:10px; background:#f1f4f5; border-radius:8px; }.cover-source-tab { flex:1; border:0; background:transparent; border-radius:6px; padding:7px 4px; color:var(--muted); cursor:pointer; font-size:11px; }.cover-source-tab.is-active { background:#fff; color:var(--ink); font-weight:600; box-shadow:0 1px 3px rgba(20,35,49,.12); }.cover-dropzone { min-height:84px; padding:14px; border:1px dashed #b9c6cd; border-radius:8px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; cursor:pointer; color:#51616d; font-size:12px; }.cover-dropzone:hover { border-color:var(--accent); background:#fff9f5; }.cover-dropzone small { display:block; margin-top:5px; color:var(--muted); font-size:10px; }

/* ============================================================
   EDITORIAL PUBLIC SITE — design system
   Palette: deep navy #0a1f44 · royal blue #1e50d4 · sky #cfe0ff
   ============================================================ */
:root{
    --ink:#0e1b2e; --ink-soft:#3f4d63; --muted:#6a7688; --faint:#97a2b4;
    --navy:#0a1f44; --navy-700:#12295a; --brand:#1e50d4; --brand-700:#1741ad;
    --sky:#cfe0ff; --sky-050:#eef4ff; --line:#e6eaf1; --line-soft:#eef1f6;
    --paper:#ffffff; --wash:#f6f8fc; --shadow:0 10px 30px rgba(12,28,58,.08);
    --shadow-lg:0 24px 60px rgba(12,28,58,.16); --radius:14px; --radius-sm:9px;
    --wrap:1200px; --serif:'Newsreader',Georgia,serif; --sans:'Inter',system-ui,sans-serif;
}
.site-body{margin:0;background:var(--wash);color:var(--ink);font-family:var(--sans);
    font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;}
.site-body a{color:inherit;}
.site-body img{display:block;max-width:100%;}
.site-body.nav-open{overflow:hidden;}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:60;background:rgba(255,255,255,.92);
    backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid var(--line);transition:box-shadow .25s,border-color .25s;}
.site-header.is-scrolled{box-shadow:0 6px 24px rgba(12,28,58,.08);border-color:transparent;}
.site-header__inner{max-width:var(--wrap);margin:0 auto;padding:0 24px;height:74px;
    display:flex;align-items:center;gap:28px;}
.site-header__actions{margin-left:auto;display:flex;align-items:center;gap:6px;}

/* Brand */
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;flex:none;}
.brand__mark{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;
    background:linear-gradient(135deg,var(--brand),var(--navy));color:#fff;font-family:var(--serif);
    font-weight:700;font-size:22px;line-height:1;box-shadow:0 6px 16px rgba(30,80,212,.28);}
.brand__logo{height:40px;width:auto;}
.brand__text{display:flex;flex-direction:column;line-height:1.1;}
.brand__text strong{font-size:20px;font-weight:800;letter-spacing:-.02em;color:var(--navy);}
.brand__text small{font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-top:3px;}

/* Main nav */
.mainnav{align-self:stretch;display:flex;}
.mainnav__list{display:flex;align-items:stretch;gap:2px;list-style:none;margin:0;padding:0;height:100%;}
.mainnav__item{position:relative;display:flex;align-items:center;}
.mainnav__link{display:flex;align-items:center;gap:6px;height:100%;padding:0 14px;
    font-size:14px;font-weight:600;color:var(--ink-soft);text-decoration:none;
    border-bottom:2px solid transparent;transition:color .18s,border-color .18s;}
.mainnav__link:hover{color:var(--brand);}
.mainnav__item.has-mega:hover>.mainnav__link{color:var(--brand);border-bottom-color:var(--brand);}
.mainnav__caret{transition:transform .2s;opacity:.7;}
.mainnav__item.has-mega:hover .mainnav__caret{transform:rotate(180deg);}

/* Mega menu */
.mega{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(10px);
    min-width:560px;background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);
    box-shadow:var(--shadow-lg);opacity:0;visibility:hidden;pointer-events:none;
    transition:opacity .2s ease,transform .2s ease;z-index:70;}
.mega::before{content:"";position:absolute;top:-10px;left:0;right:0;height:10px;}
.mainnav__item.has-mega:hover .mega,.mainnav__item.has-mega:focus-within .mega{
    opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(8px);}
.mega__inner{display:grid;grid-template-columns:210px 1fr;gap:8px;padding:22px;}
.mega__intro{background:linear-gradient(160deg,var(--navy),var(--brand-700));color:#fff;
    border-radius:10px;padding:20px;display:flex;flex-direction:column;}
.mega__eyebrow{font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:var(--sky);font-weight:700;}
.mega__title{font-family:var(--serif);font-size:22px;line-height:1.1;margin:8px 0 6px;font-weight:700;}
.mega__desc{font-size:12.5px;line-height:1.5;color:#c8d6f4;margin:0 0 auto;}
.mega__all{margin-top:16px;font-size:13px;font-weight:700;color:#fff;text-decoration:none;
    display:inline-flex;align-items:center;gap:6px;}
.mega__all span{transition:transform .2s;}
.mega__all:hover span{transform:translateX(4px);}
.mega__grid{list-style:none;margin:0;padding:6px;display:grid;
    grid-template-columns:1fr 1fr;gap:2px;align-content:start;}
.mega__link{display:flex;align-items:center;justify-content:space-between;gap:10px;
    padding:11px 14px;border-radius:9px;text-decoration:none;color:var(--ink);
    font-size:14px;font-weight:500;transition:background .16s,color .16s;}
.mega__link-arrow{opacity:0;transform:translateX(-4px);transition:.16s;color:var(--brand);font-weight:700;}
.mega__link:hover{background:var(--sky-050);color:var(--brand);}
.mega__link:hover .mega__link-arrow{opacity:1;transform:translateX(0);}

/* Header buttons */
.icon-btn{display:grid;place-items:center;width:42px;height:42px;border-radius:11px;border:0;
    background:transparent;color:var(--ink-soft);cursor:pointer;transition:background .16s,color .16s;}
.icon-btn:hover{background:var(--sky-050);color:var(--brand);}
.burger{display:none;flex-direction:column;gap:4px;}
.burger span{display:block;width:20px;height:2px;border-radius:2px;background:currentColor;transition:.2s;}

/* Header slide-down search */
.header-search{border-top:1px solid var(--line);background:var(--paper);}
.header-search__form{max-width:var(--wrap);margin:0 auto;padding:14px 24px;display:flex;align-items:center;gap:12px;color:var(--muted);}
.header-search__form input{flex:1;border:0;font-size:17px;font-family:var(--sans);color:var(--ink);
    background:transparent;padding:6px 0;outline:none;}
.header-search__form button{border:0;background:var(--brand);color:#fff;font-weight:600;font-size:14px;
    padding:11px 22px;border-radius:10px;cursor:pointer;transition:background .16s;}
.header-search__form button:hover{background:var(--brand-700);}

/* Mobile nav drawer */
.mobile-nav{position:fixed;inset:74px 0 0;z-index:55;background:var(--paper);overflow-y:auto;padding:16px 20px 40px;}
.mobile-nav__list,.mobile-nav__sub{list-style:none;margin:0;padding:0;}
.mobile-nav__item{border-bottom:1px solid var(--line-soft);padding:6px 0;}
.mobile-nav__link{display:block;padding:12px 4px;font-size:17px;font-weight:700;color:var(--navy);text-decoration:none;}
.mobile-nav__sub{padding:0 4px 10px;}
.mobile-nav__sub a{display:block;padding:9px 12px;font-size:15px;color:var(--ink-soft);text-decoration:none;border-radius:8px;}
.mobile-nav__sub a:hover{background:var(--sky-050);color:var(--brand);}

/* ---------- Layout ---------- */
.site-main{max-width:var(--wrap);margin:0 auto;padding:32px 24px 64px;}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy);color:#c7d2e8;margin-top:48px;}
.site-footer__top{max-width:var(--wrap);margin:0 auto;padding:56px 24px 40px;
    display:grid;grid-template-columns:1.3fr 2fr;gap:48px;}
.brand--footer .brand__text strong{color:#fff;}
.brand--footer .brand__mark{background:linear-gradient(135deg,#3f74ff,#1e50d4);}
.site-footer__about{margin:18px 0 20px;font-size:14px;line-height:1.65;color:#9fb0d0;max-width:36ch;}
.socials{display:flex;gap:10px;}
.socials__link{display:grid;place-items:center;width:38px;height:38px;border-radius:10px;
    background:rgba(255,255,255,.08);color:#fff;font-weight:700;font-size:14px;text-decoration:none;transition:background .16s;}
.socials__link:hover{background:var(--brand);}
.site-footer__nav{display:grid;grid-template-columns:1fr 1fr 1.4fr;gap:32px;}
.site-footer__col h4{margin:0 0 16px;font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:#fff;font-weight:700;}
.site-footer__col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:11px;}
.site-footer__col a{font-size:14px;color:#a9b8d6;text-decoration:none;transition:color .16s;}
.site-footer__col a:hover{color:#fff;}
.site-footer__col p{font-size:14px;line-height:1.6;color:#9fb0d0;margin:0 0 16px;}
.subscribe{display:flex;gap:8px;}
.subscribe input{flex:1;min-width:0;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.06);
    color:#fff;border-radius:10px;padding:11px 14px;font-size:14px;outline:none;}
.subscribe input::placeholder{color:#8595b5;}
.subscribe input:focus{border-color:var(--brand);}
.subscribe button{border:0;background:var(--brand);color:#fff;font-weight:600;font-size:14px;
    padding:0 18px;border-radius:10px;cursor:pointer;white-space:nowrap;transition:background .16s;}
.subscribe button:hover{background:#3f74ff;}
.site-footer__bottom{border-top:1px solid rgba(255,255,255,.1);}
.site-footer__bottom>*,.site-footer__bottom{max-width:var(--wrap);}
.site-footer__bottom{margin:0 auto;padding:20px 24px;display:flex;align-items:center;
    justify-content:space-between;gap:16px;font-size:13px;color:#8595b5;flex-wrap:wrap;}
.site-footer__legal{display:flex;gap:22px;}
.site-footer__legal a{color:#8595b5;text-decoration:none;transition:color .16s;}
.site-footer__legal a:hover{color:#fff;}

/* ---------- Shared editorial components ---------- */
.eyebrow{font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:var(--brand);}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:22px;}
.section-head h2{font-family:var(--serif);font-size:27px;font-weight:700;letter-spacing:-.02em;margin:0;color:var(--navy);}
.section-head p{margin:4px 0 0;font-size:14px;color:var(--muted);}
.section-head__link{font-size:14px;font-weight:600;color:var(--brand);text-decoration:none;white-space:nowrap;
    display:inline-flex;align-items:center;gap:6px;}
.section-head__link:hover{color:var(--brand-700);}
.tag{display:inline-flex;align-items:center;font-size:11px;font-weight:700;letter-spacing:.08em;
    text-transform:uppercase;color:var(--brand);background:var(--sky-050);
    padding:5px 10px;border-radius:999px;text-decoration:none;}
.tag:hover{background:var(--sky);}
.btn-primary{display:inline-flex;align-items:center;gap:8px;background:var(--brand);color:#fff;
    text-decoration:none;font-weight:600;font-size:15px;padding:13px 22px;border-radius:11px;
    box-shadow:0 8px 20px rgba(30,80,212,.28);transition:transform .16s,background .16s,box-shadow .16s;}
.btn-primary:hover{background:var(--brand-700);transform:translateY(-1px);box-shadow:0 12px 26px rgba(30,80,212,.34);}
.btn-primary span{transition:transform .2s;}
.btn-primary:hover span{transform:translateX(4px);}

/* ---------- Home ---------- */
.home{display:flex;flex-direction:column;gap:44px;}
.lead-grid{display:grid;grid-template-columns:minmax(0,2fr) minmax(320px,1fr);gap:24px;}

.hero{position:relative;min-height:440px;border-radius:var(--radius);overflow:hidden;background:var(--navy);isolation:isolate;}
.hero__slide{position:absolute;inset:0;opacity:0;transition:opacity .7s ease;}
.hero__slide.is-visible{opacity:1;}
.hero__slide>img{width:100%;height:100%;object-fit:cover;}
.hero__shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,17,42,.95) 0%,rgba(8,24,60,.78) 45%,rgba(10,28,70,.25) 100%),linear-gradient(0deg,rgba(6,17,42,.75),transparent 55%);}
.hero__copy{position:absolute;inset:auto 0 0 0;padding:40px 44px;max-width:640px;color:#fff;}
.hero__copy h1{font-family:var(--serif);font-size:38px;line-height:1.08;letter-spacing:-.02em;margin:14px 0 12px;font-weight:700;}
.hero__copy h1 a{color:#fff;text-decoration:none;}
.hero__copy h1 a:hover{text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:4px;}
.hero__copy p{font-size:16px;line-height:1.55;color:#dbe6fb;margin:0 0 22px;max-width:52ch;}
.hero__label{color:var(--sky);}
.hero__dots{position:absolute;left:44px;bottom:26px;display:flex;gap:8px;z-index:2;}
.hero__dots i{width:26px;height:3px;border-radius:2px;background:rgba(255,255,255,.4);transition:background .2s;}
.hero__dots i.is-active{background:#fff;}
.hero--empty{display:grid;align-content:center;padding:56px 44px;
    background:radial-gradient(circle at 85% 15%,#2a5fd0 0,transparent 40%),linear-gradient(135deg,#061229,#0d3576 60%,#0f5aa0);}
.hero--empty h1{font-family:var(--serif);font-size:40px;line-height:1.08;margin:14px 0 10px;color:#fff;font-weight:700;}
.hero--empty p{max-width:44ch;color:#cfe0ff;font-size:16px;}

/* Latest sidebar */
.latest{border:1px solid var(--line);border-radius:var(--radius);background:var(--paper);
    padding:20px 22px 14px;box-shadow:var(--shadow);display:flex;flex-direction:column;}
.latest__head{display:flex;align-items:center;gap:8px;margin-bottom:6px;}
.latest__head h2{font-size:13px;letter-spacing:.12em;text-transform:uppercase;margin:0;color:var(--navy);font-weight:800;}
.latest__pulse{width:8px;height:8px;border-radius:50%;background:#e2384d;box-shadow:0 0 0 0 rgba(226,56,77,.5);animation:pulse 2s infinite;}
@keyframes pulse{70%{box-shadow:0 0 0 8px rgba(226,56,77,0);}100%{box-shadow:0 0 0 0 rgba(226,56,77,0);}}
.latest__item{display:flex;gap:14px;padding:15px 0;border-top:1px solid var(--line-soft);text-decoration:none;color:var(--ink);}
.latest__item:first-of-type{border-top:0;}
.latest__item-body{flex:1;min-width:0;}
.latest__time{font-size:12px;font-weight:700;color:var(--brand);font-variant-numeric:tabular-nums;}
.latest__item strong{display:block;font-size:14.5px;font-weight:600;line-height:1.3;margin:3px 0;color:var(--ink);transition:color .16s;}
.latest__item:hover strong{color:var(--brand);}
.latest__item em{font-style:normal;font-size:12px;color:var(--muted);}
.latest__thumb{width:76px;height:56px;border-radius:8px;object-fit:cover;flex:none;background:var(--wash);}
.latest__more{margin-top:auto;padding-top:14px;font-size:14px;font-weight:600;color:var(--brand);text-decoration:none;
    display:inline-flex;align-items:center;gap:6px;}
.latest__more:hover{color:var(--brand-700);}

/* Card grid (editor picks) */
.card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.card{display:flex;flex-direction:column;background:var(--paper);border:1px solid var(--line);
    border-radius:var(--radius);overflow:hidden;transition:transform .2s,box-shadow .2s,border-color .2s;}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:transparent;}
.card__media{display:block;aspect-ratio:16/10;background:linear-gradient(135deg,var(--sky-050),#dbe6fb);overflow:hidden;}
.card__media img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.card:hover .card__media img{transform:scale(1.05);}
.card__body{padding:16px 18px 20px;display:flex;flex-direction:column;flex:1;}
.card__body .tag{align-self:flex-start;margin-bottom:12px;}
.card__title{font-family:var(--serif);font-size:19px;line-height:1.22;margin:0 0 8px;font-weight:600;}
.card__title a{color:var(--navy);text-decoration:none;}
.card__title a:hover{color:var(--brand);}
.card__excerpt{font-size:14px;line-height:1.55;color:var(--ink-soft);margin:0 0 16px;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.card__meta{margin-top:auto;font-size:12.5px;color:var(--muted);display:flex;gap:8px;align-items:center;}

/* List rows (latest analyses / category / search share this) */
.rowlist{display:flex;flex-direction:column;}
.row{display:grid;grid-template-columns:132px minmax(0,1fr) auto;gap:20px;align-items:center;
    padding:20px 0;border-top:1px solid var(--line);text-decoration:none;color:var(--ink);}
.row:first-child{border-top:0;}
.row__thumb{width:132px;height:84px;border-radius:10px;object-fit:cover;background:var(--wash);flex:none;}
.row__thumb--ph{display:grid;place-items:center;background:linear-gradient(135deg,var(--sky-050),#dbe6fb);color:var(--brand);}
.row__body{min-width:0;}
.row__cat{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--brand);}
.row__title{font-family:var(--serif);font-size:20px;line-height:1.25;margin:5px 0 6px;font-weight:600;color:var(--navy);}
.row:hover .row__title{color:var(--brand);}
.row__excerpt{font-size:14px;line-height:1.5;color:var(--ink-soft);margin:0;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.row__aside{text-align:right;white-space:nowrap;color:var(--muted);font-size:13px;font-variant-numeric:tabular-nums;}
.row__arrow{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:50%;
    border:1px solid var(--line);color:var(--brand);margin-top:8px;transition:.16s;}
.row:hover .row__arrow{background:var(--brand);color:#fff;border-color:var(--brand);}

/* Page header (inner pages) */
.page-head{margin-bottom:32px;}
.page-head h1{font-family:var(--serif);font-size:40px;line-height:1.1;letter-spacing:-.02em;margin:12px 0 8px;color:var(--navy);font-weight:700;}
.page-head p{font-size:16px;color:var(--muted);margin:0;max-width:60ch;}
.breadcrumb{display:flex;gap:8px;font-size:13px;color:var(--muted);margin-bottom:6px;}
.breadcrumb a{color:var(--brand);text-decoration:none;}
.breadcrumb a:hover{text-decoration:underline;}

/* Pagination */
.pagination{display:flex;justify-content:center;align-items:center;gap:10px;margin-top:44px;}
.pagination a,.pagination span{padding:10px 18px;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;}
.pagination a{border:1px solid var(--line);color:var(--ink-soft);background:var(--paper);transition:.16s;}
.pagination a:hover{border-color:var(--brand);color:var(--brand);}
.pagination span{color:var(--muted);}

/* Empty state */
.empty{text-align:center;padding:64px 20px;color:var(--muted);}
.empty svg{margin:0 auto 16px;color:var(--faint);}
.empty h2{font-family:var(--serif);color:var(--navy);font-size:24px;margin:0 0 8px;}

/* ---------- Article page ---------- */
.article{max-width:760px;margin:0 auto;}
.article__head{margin-bottom:28px;}
.article__title{font-family:var(--serif);font-size:42px;line-height:1.12;letter-spacing:-.02em;
    margin:14px 0 18px;color:var(--navy);font-weight:700;}
.article__meta{display:flex;flex-wrap:wrap;align-items:center;gap:16px;font-size:14px;color:var(--muted);
    padding-bottom:22px;border-bottom:1px solid var(--line);}
.article__meta .dot{width:3px;height:3px;border-radius:50%;background:var(--faint);}
.article__author{font-weight:600;color:var(--ink);}
.article__cover{width:100%;border-radius:var(--radius);margin:26px 0;max-height:480px;object-fit:cover;box-shadow:var(--shadow);}
.article__body{font-size:18px;line-height:1.8;color:#1f2b3e;}
.article__body>*{margin:0 0 1.35em;}
.article__body h2{font-family:var(--serif);font-size:28px;margin:1.8em 0 .6em;color:var(--navy);}
.article__body h3{font-family:var(--serif);font-size:22px;margin:1.5em 0 .5em;color:var(--navy);}
.article__body a{color:var(--brand);text-decoration:underline;text-underline-offset:2px;}
.article__body img{border-radius:10px;margin:1.6em 0;}
.article__body blockquote{border-left:4px solid var(--brand);padding:4px 0 4px 22px;margin:1.6em 0;
    font-family:var(--serif);font-size:22px;line-height:1.45;color:var(--navy);font-style:italic;}
.article__body ul,.article__body ol{padding-left:1.4em;}
.article__body li{margin:.4em 0;}
.related{margin-top:48px;padding-top:32px;border-top:1px solid var(--line);}
.related h2{font-family:var(--serif);font-size:24px;color:var(--navy);margin:0 0 20px;}
.related__grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.related__item{display:flex;gap:14px;text-decoration:none;color:var(--ink);}
.related__item img{width:92px;height:68px;border-radius:9px;object-fit:cover;flex:none;background:var(--wash);}
.related__item strong{font-size:15px;font-weight:600;line-height:1.3;display:block;transition:color .16s;}
.related__item:hover strong{color:var(--brand);}
.related__item time{font-size:12.5px;color:var(--muted);margin-top:4px;display:block;}

/* ---------- Responsive ---------- */
@media(max-width:1000px){
    .card-grid{grid-template-columns:repeat(2,1fr);}
    .site-footer__top{grid-template-columns:1fr;gap:36px;}
}
@media(max-width:860px){
    .mainnav{display:none;}
    .burger{display:flex;}
    .lead-grid{grid-template-columns:1fr;}
    .hero{min-height:380px;}
    .site-footer__nav{grid-template-columns:1fr 1fr;}
    .related__grid{grid-template-columns:1fr;}
    .row{grid-template-columns:100px minmax(0,1fr);}
    .row__aside{display:none;}
    .article__title{font-size:32px;}
    .hero__copy h1{font-size:30px;}
    .page-head h1{font-size:32px;}
}
@media(max-width:560px){
    .site-header__inner{gap:12px;padding:0 16px;}
    .brand__text small{display:none;}
    .site-main{padding:20px 16px 48px;}
    .card-grid{grid-template-columns:1fr;}
    .site-footer__nav{grid-template-columns:1fr;}
    .hero__copy{padding:28px 22px;}
    .latest__thumb{display:none;}
}

/* ============================================================
   PUBLIC HOME + PAGES — "The NEWS*" editorial layout
   Reference: example/*.png · navy/brand/sky palette · print feel
   ============================================================ */
.thenews{display:flex;flex-direction:column;gap:56px;}

/* shared meta line */
.metaline{display:block;font-size:12px;font-weight:600;letter-spacing:.02em;text-transform:uppercase;
    color:var(--muted);}
.metaline--date{color:var(--brand);}
.byline{display:block;font-size:12.5px;color:var(--muted);margin-top:12px;}
.sep{opacity:.6;}

/* pills */
.pill{display:inline-flex;align-items:center;font-size:11px;font-weight:700;letter-spacing:.09em;
    text-transform:uppercase;color:var(--navy);border:1px solid var(--line);border-radius:999px;
    padding:6px 13px;text-decoration:none;background:var(--paper);transition:.16s;}
.pill:hover{border-color:var(--brand);color:var(--brand);}
.pill--ghost{border-style:dashed;color:var(--muted);}

/* section head with rule */
.block{display:flex;flex-direction:column;}
.block__head{display:flex;align-items:center;justify-content:space-between;gap:16px;
    padding-bottom:16px;margin-bottom:26px;border-bottom:2px solid var(--navy);}
.block__head h2{font-family:var(--sans);font-size:24px;font-weight:800;letter-spacing:-.01em;
    text-transform:uppercase;margin:0;color:var(--navy);}
.viewall{font-size:13px;font-weight:700;color:var(--brand);text-decoration:none;white-space:nowrap;
    display:inline-flex;align-items:center;gap:6px;text-transform:uppercase;letter-spacing:.04em;}
.viewall span{transition:transform .2s;}
.viewall:hover{color:var(--brand-700);}
.viewall:hover span{transform:translateX(4px);}

/* ---------- Category highlight strip ---------- */
.highlights{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
    padding-bottom:28px;border-bottom:1px solid var(--line);}
.hl{display:flex;gap:14px;align-items:center;text-decoration:none;color:var(--ink);}
.hl__media{width:88px;height:66px;border-radius:10px;overflow:hidden;flex:none;
    background:linear-gradient(135deg,var(--sky-050),#dbe6fb);}
.hl__media img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.hl:hover .hl__media img{transform:scale(1.06);}
.hl__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:26px;font-weight:700;color:var(--brand);opacity:.5;}
.hl__body{min-width:0;}
.hl__cat{display:block;font-size:10.5px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;
    color:var(--brand);margin-bottom:5px;}
.hl__title{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
    font-size:14.5px;line-height:1.35;font-weight:600;color:var(--navy);}
.hl:hover .hl__title{color:var(--brand);}

/* ---------- Hero featured ---------- */
.feathero{display:flex;flex-direction:column;}
.feathero__media{position:relative;display:block;aspect-ratio:21/9;border-radius:var(--radius);
    overflow:hidden;background:var(--navy);}
.feathero__media img{width:100%;height:100%;object-fit:cover;}
.feathero__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:64px;font-weight:700;color:#fff;opacity:.3;}
.live{position:absolute;top:18px;left:18px;display:inline-flex;align-items:center;gap:7px;
    background:#fff;color:var(--navy);font-size:12px;font-weight:700;padding:7px 13px;border-radius:999px;
    box-shadow:0 4px 14px rgba(12,28,58,.18);}
.live i{width:7px;height:7px;border-radius:50%;background:#e2384d;
    box-shadow:0 0 0 0 rgba(226,56,77,.5);animation:pulse 2s infinite;}
.feathero__bar{display:flex;align-items:center;justify-content:space-between;gap:16px;
    flex-wrap:wrap;margin:22px 0 4px;}
.feathero__tags{display:flex;gap:10px;align-items:center;flex-wrap:wrap;}
.feathero__meta{display:flex;align-items:center;gap:22px;color:var(--muted);font-size:13px;
    font-weight:600;text-transform:uppercase;letter-spacing:.03em;}
.readbtn{display:inline-flex;align-items:center;gap:8px;color:var(--navy);font-weight:700;
    text-decoration:none;border:1px solid var(--navy);border-radius:999px;padding:9px 18px;transition:.16s;}
.readbtn span{transition:transform .2s;}
.readbtn:hover{background:var(--navy);color:#fff;}
.readbtn:hover span{transform:translateX(4px);}
.feathero__title{font-family:var(--serif);font-size:40px;line-height:1.12;letter-spacing:-.02em;
    font-weight:700;margin:8px 0 0;color:var(--navy);max-width:20ch;}
.feathero__title a{color:inherit;text-decoration:none;}
.feathero__title a:hover{color:var(--brand);}

/* ---------- LATEST NEWS grid ---------- */
.latestgrid{display:grid;grid-template-columns:minmax(0,1.6fr) minmax(0,1fr);gap:24px;margin-bottom:24px;}
.bigcard{position:relative;display:block;border-radius:var(--radius);overflow:hidden;
    min-height:360px;text-decoration:none;background:var(--navy);isolation:isolate;}
.bigcard__media{position:absolute;inset:0;}
.bigcard__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.bigcard:hover .bigcard__media img{transform:scale(1.05);}
.bigcard__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:56px;font-weight:700;color:#fff;opacity:.3;}
.bigcard__overlay{position:absolute;inset:auto 0 0 0;padding:28px 26px 24px;color:#fff;
    background:linear-gradient(0deg,rgba(6,17,42,.92),rgba(6,17,42,.2) 70%,transparent);}
.bigcard__title{display:block;font-family:var(--serif);font-size:26px;line-height:1.18;
    font-weight:700;margin-bottom:10px;}
.bigcard__overlay .metaline{color:var(--sky);}
.stacked{display:flex;flex-direction:column;gap:24px;}
.hcard{display:grid;grid-template-columns:minmax(0,1fr) 128px;gap:16px;align-items:center;
    text-decoration:none;color:var(--ink);}
.hcard__body{min-width:0;order:1;}
.hcard__title{display:block;font-family:var(--serif);font-size:19px;line-height:1.24;
    font-weight:600;color:var(--navy);margin-bottom:8px;
    display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.hcard:hover .hcard__title{color:var(--brand);}
.hcard__media{width:128px;height:100px;border-radius:10px;overflow:hidden;order:2;flex:none;
    background:linear-gradient(135deg,var(--sky-050),#dbe6fb);}
.hcard__media img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.hcard:hover .hcard__media img{transform:scale(1.06);}
.hcard__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:30px;font-weight:700;color:var(--brand);opacity:.5;}

/* trio / quad vertical cards */
.trio{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.quad{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.vcard{display:flex;flex-direction:column;text-decoration:none;color:var(--ink);}
.vcard__media{position:relative;aspect-ratio:16/10;border-radius:10px;overflow:hidden;margin-bottom:14px;
    background:linear-gradient(135deg,var(--sky-050),#dbe6fb);}
.vcard__media img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.vcard:hover .vcard__media img{transform:scale(1.05);}
.vcard__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:38px;font-weight:700;color:var(--brand);opacity:.5;}
.vcard__title{font-family:var(--serif);font-size:19px;line-height:1.24;font-weight:600;
    color:var(--navy);margin:8px 0;order:2;}
.vcard:hover .vcard__title{color:var(--brand);}
.vcard .metaline{order:1;}
.vcard .metaline + .vcard__title{margin-top:0;}

/* ---------- Split feature section ---------- */
.splitrow{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(0,1fr);gap:34px;align-items:start;}
.splitfeat{position:relative;display:block;text-decoration:none;color:var(--ink);}
.splitfeat__media{position:relative;aspect-ratio:16/10;border-radius:var(--radius);overflow:hidden;
    margin-bottom:0;background:var(--navy);}
.splitfeat__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.splitfeat:hover .splitfeat__media img{transform:scale(1.04);}
.splitfeat__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:52px;font-weight:700;color:#fff;opacity:.3;}
.splitfeat__body{position:relative;background:var(--paper);border:1px solid var(--line);
    border-radius:var(--radius);padding:22px 24px;margin:-56px 24px 0;box-shadow:var(--shadow);}
.splitfeat__title{display:block;font-family:var(--serif);font-size:24px;line-height:1.2;
    font-weight:700;color:var(--navy);margin:8px 0 8px;}
.splitfeat:hover .splitfeat__title{color:var(--brand);}
.splitfeat__excerpt{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
    font-size:14.5px;line-height:1.55;color:var(--ink-soft);}
.sidelist{list-style:none;margin:0;padding:0;}
.sidelist li{border-top:1px solid var(--line);}
.sidelist li:first-child{border-top:0;}
.sidelist a{display:grid;grid-template-columns:96px minmax(0,1fr);gap:16px;align-items:center;
    padding:18px 0;text-decoration:none;color:var(--ink);}
.sidelist li:first-child a{padding-top:0;}
.sidelist__media{width:96px;height:72px;border-radius:9px;overflow:hidden;flex:none;
    background:linear-gradient(135deg,var(--sky-050),#dbe6fb);}
.sidelist__media img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.sidelist a:hover .sidelist__media img{transform:scale(1.06);}
.sidelist__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:26px;font-weight:700;color:var(--brand);opacity:.5;}
.sidelist__body{min-width:0;}
.sidelist__title{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
    font-family:var(--serif);font-size:16px;line-height:1.28;font-weight:600;color:var(--navy);margin-top:6px;}
.sidelist a:hover .sidelist__title{color:var(--brand);}

/* ---------- Section title (category / news / search / about) ---------- */
.section-title{margin-bottom:32px;}
.crumbs{display:flex;gap:9px;align-items:center;font-size:12.5px;color:var(--muted);margin-bottom:14px;
    text-transform:uppercase;letter-spacing:.04em;font-weight:600;}
.crumbs a{color:var(--brand);text-decoration:none;}
.crumbs a:hover{text-decoration:underline;}
.crumbs span[aria-hidden]{opacity:.5;}
.section-title h1{font-family:var(--sans);font-size:34px;font-weight:800;letter-spacing:-.02em;
    text-transform:uppercase;margin:0 0 16px;color:var(--navy);}
.section-title__rule{display:block;height:2px;background:var(--navy);width:100%;}
.section-title__sub{margin:14px 0 0;font-size:14px;color:var(--muted);}

/* ---------- Post grid (category/news/search) ---------- */
.postgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:34px 26px;}
.post{display:flex;flex-direction:column;}
.post__media{position:relative;display:block;aspect-ratio:16/11;border-radius:var(--radius);
    overflow:hidden;margin-bottom:16px;background:linear-gradient(135deg,var(--sky-050),#dbe6fb);}
.post__media img{width:100%;height:100%;object-fit:cover;transition:transform .45s;}
.post:hover .post__media img{transform:scale(1.05);}
.post__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:44px;font-weight:700;color:var(--brand);opacity:.5;}
.post__cat{position:absolute;top:14px;left:14px;background:var(--paper);color:var(--navy);
    font-size:10.5px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
    padding:6px 11px;border-radius:999px;box-shadow:0 3px 10px rgba(12,28,58,.15);}
.post__title{font-family:var(--serif);font-size:21px;line-height:1.24;font-weight:600;margin:0 0 12px;}
.post__title a{color:var(--navy);text-decoration:none;}
.post__title a:hover{color:var(--brand);}
.post__meta{margin-top:auto;display:flex;align-items:center;gap:9px;font-size:12.5px;color:var(--muted);
    font-weight:600;text-transform:uppercase;letter-spacing:.03em;}
.post__meta .sep{opacity:.6;}

/* ---------- Single article ---------- */
.single{max-width:820px;margin:0 auto;}
.single__crumbs{margin-bottom:22px;}
.single__cover{margin:0 0 26px;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);}
.single__cover img{width:100%;max-height:520px;object-fit:cover;}
.single__byline{display:flex;align-items:center;gap:14px;padding-bottom:22px;
    border-bottom:1px solid var(--line);margin-bottom:24px;}
.avatar{display:grid;place-items:center;width:46px;height:46px;border-radius:50%;flex:none;
    background:linear-gradient(135deg,var(--brand),var(--navy));color:#fff;font-weight:700;font-size:18px;
    font-family:var(--serif);}
.single__by strong{display:block;font-size:15px;font-weight:700;color:var(--navy);
    text-transform:uppercase;letter-spacing:.04em;}
.single__by-meta{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--muted);margin-top:3px;}
.single__cat{margin-left:auto;}
.single__title{font-family:var(--sans);font-size:40px;line-height:1.14;letter-spacing:-.02em;
    font-weight:800;text-transform:uppercase;color:var(--navy);margin:0 0 20px;}
.single__lead{font-family:var(--serif);font-size:21px;line-height:1.5;color:var(--ink-soft);
    margin:0 0 26px;font-style:italic;}
.single__body{font-size:18px;line-height:1.8;color:#1f2b3e;}
.single__body>*{margin:0 0 1.4em;}
.single__body h2{font-family:var(--serif);font-size:27px;margin:1.7em 0 .5em;color:var(--navy);font-weight:700;}
.single__body h3{font-family:var(--serif);font-size:22px;margin:1.5em 0 .5em;color:var(--navy);font-weight:700;}
.single__body a{color:var(--brand);text-decoration:underline;text-underline-offset:2px;}
.single__body img{border-radius:10px;margin:1.6em 0;}
.single__body blockquote{border-left:4px solid var(--brand);padding:4px 0 4px 22px;margin:1.6em 0;
    font-family:var(--serif);font-size:22px;line-height:1.45;color:var(--navy);font-style:italic;}
.single__body ul,.single__body ol{padding-left:1.4em;}
.single__body li{margin:.45em 0;}

.similar{max-width:1200px;margin:56px auto 0;padding-top:8px;}

/* ---------- About ---------- */
.about{display:flex;flex-direction:column;gap:48px;}
.about__lead{max-width:760px;}
.about__intro{font-family:var(--serif);font-size:24px;line-height:1.5;color:var(--navy);margin:0 0 20px;}
.about__lead p{font-size:17px;line-height:1.75;color:var(--ink-soft);margin:0 0 18px;}
.about__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:32px;}
.stat{border:1px solid var(--line);border-radius:var(--radius);padding:24px;text-align:center;background:var(--paper);}
.stat__num{display:block;font-family:var(--serif);font-size:40px;font-weight:700;color:var(--brand);line-height:1;}
.stat__label{display:block;margin-top:8px;font-size:13px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;}
.about__values{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
    padding-top:44px;border-top:2px solid var(--navy);}
.value h3{font-family:var(--sans);font-size:18px;font-weight:800;text-transform:uppercase;
    letter-spacing:.02em;color:var(--navy);margin:0 0 10px;}
.value p{font-size:15px;line-height:1.6;color:var(--ink-soft);margin:0;}
.about__cta{background:radial-gradient(circle at 100% 0,#2a5fd0 0,transparent 45%),
    linear-gradient(150deg,var(--navy),var(--brand-700));border-radius:var(--radius);
    padding:44px;color:#fff;text-align:center;}
.about__cta h2{font-family:var(--serif);font-size:28px;margin:0 0 10px;font-weight:700;}
.about__cta p{color:#cfe0ff;font-size:16px;margin:0 0 24px;}
.about__cta .btn-primary{background:#fff;color:var(--navy);box-shadow:none;}
.about__cta .btn-primary:hover{background:var(--sky);}

/* ---------- Responsive ---------- */
@media(max-width:1000px){
    .highlights{grid-template-columns:repeat(2,1fr);}
    .latestgrid{grid-template-columns:1fr;}
    .bigcard{min-height:300px;}
    .stacked{flex-direction:row;}
    .stacked .hcard{flex:1;grid-template-columns:1fr;}
    .stacked .hcard__media{width:100%;height:150px;order:1;margin-bottom:12px;}
    .stacked .hcard__body{order:2;}
    .quad{grid-template-columns:repeat(2,1fr);}
    .splitrow{grid-template-columns:1fr;gap:20px;}
    .postgrid{grid-template-columns:repeat(2,1fr);}
    .about__stats,.about__values{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:860px){
    .feathero__title{font-size:30px;}
    .feathero__media{aspect-ratio:16/10;}
    .single__title{font-size:30px;}
    .about__values{grid-template-columns:1fr;gap:20px;}
}
@media(max-width:560px){
    .thenews{gap:44px;}
    .highlights{grid-template-columns:1fr;}
    .trio,.quad{grid-template-columns:1fr;}
    .stacked{flex-direction:column;}
    .stacked .hcard{grid-template-columns:minmax(0,1fr) 110px;}
    .stacked .hcard__media{width:110px;height:84px;order:2;margin-bottom:0;}
    .stacked .hcard__body{order:1;}
    .postgrid{grid-template-columns:1fr;}
    .block__head h2{font-size:20px;}
    .section-title h1{font-size:26px;}
    .feathero__title{font-size:26px;}
    .single__title{font-size:26px;}
    .single__lead{font-size:18px;}
    .single__body{font-size:16.5px;}
    .about__stats{grid-template-columns:1fr;}
    .about__cta{padding:32px 22px;}
}

/* ============================================================
   PUBLIC HOME — "NEXUS" analytical layout (reference: example/main.jpg)
   Overrides the older editorial home; navy/brand/sky palette.
   ============================================================ */
.nexus{display:flex;flex-direction:column;gap:64px;}

/* shared primitives (redefined for this layout) */
.avatar{display:grid;place-items:center;border-radius:50%;flex:none;overflow:hidden;
    width:44px;height:44px;background:linear-gradient(135deg,var(--brand),var(--navy));
    color:#fff;font-weight:700;font-size:16px;font-family:var(--sans);}
.avatar img{width:100%;height:100%;object-fit:cover;}
.avatar--sm{width:26px;height:26px;font-size:11px;}
.avatar--md{width:48px;height:48px;font-size:18px;}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;cursor:pointer;
    font-family:var(--sans);font-size:14px;font-weight:700;letter-spacing:.01em;text-decoration:none;
    border:0;border-radius:999px;padding:12px 22px;transition:.18s;}
.btn span{transition:transform .2s;}
.btn:hover span{transform:translateX(4px);}
.btn--primary{background:var(--brand);color:#fff;box-shadow:0 8px 22px rgba(30,80,212,.28);}
.btn--primary:hover{background:var(--brand-700);}
.btn--block{width:100%;}

.tag{display:inline-flex;align-items:center;font-size:10.5px;font-weight:800;letter-spacing:.1em;
    text-transform:uppercase;color:var(--brand);text-decoration:none;}
.tag--onmedia{position:absolute;top:12px;left:12px;background:rgba(10,31,68,.86);color:#fff;
    padding:5px 11px;border-radius:999px;backdrop-filter:blur(4px);letter-spacing:.08em;}
a.tag:hover{color:var(--brand-700);}

.byline{display:flex;align-items:center;gap:9px;font-size:12.5px;color:var(--muted);}
.byline__name{font-weight:700;color:var(--navy);}
.byline__dot{opacity:.5;}
.byline__meta{color:var(--muted);}

/* ---------- Lead: hero + rail ---------- */
.lead{display:grid;grid-template-columns:minmax(0,2.2fr) minmax(0,1fr);gap:16px;align-items:stretch;}

/* Hero (dark) */
.hero{position:relative;display:grid;grid-template-columns:1fr;
    background:linear-gradient(135deg,#081a3d 0%,#0a1f44 55%,#123168 100%);
    overflow:hidden;box-shadow:var(--shadow-lg);min-height:440px;}
.hero__body{display:flex;flex-direction:column;padding:20px 18px;color:#fff;}
.hero__eyebrow{font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
    color:var(--sky);margin-bottom:12px;}
.hero__title{font-family:var(--serif);font-size:36px;line-height:1.08;font-weight:700;
    letter-spacing:-.015em;margin:0 0 14px;max-width:15ch;}
.hero__title a{color:#fff;text-decoration:none;}
.hero__title a:hover{color:var(--sky);}
.hero__summary{font-size:14.5px;line-height:1.55;color:#c3d2ee;margin:0 0 20px;max-width:42ch;}
.hero__author{display:flex;align-items:center;gap:11px;margin:auto 0 18px;}
.hero__author-meta{display:flex;flex-direction:column;gap:1px;min-width:0;}
.hero__author-meta strong{font-size:13.5px;font-weight:700;color:#fff;}
.hero__author-meta small{font-size:11.5px;color:#a9bbdd;}
.hero__author-date{margin-top:3px;color:#8fa3ca!important;font-size:11.5px;}
.hero .btn--primary{align-self:flex-start;background:#2b62dd;box-shadow:0 10px 26px rgba(15,45,120,.5);padding:10px 18px;font-size:13px;}
.hero .btn--primary:hover{background:#3a70ee;}
.hero__dots{display:flex;gap:6px;margin-top:18px;}
.hero__dots i{width:7px;height:7px;background:rgba(255,255,255,.32);transition:.2s;}
.hero__dots i.is-on{width:20px;background:var(--sky);}
.hero__media{position:relative;display:block;overflow:hidden;background:#0a1f44;min-height:100%;}
.hero__media img{width:100%;height:100%;object-fit:cover;}
.hero__media::before{content:"";position:absolute;inset:0;z-index:1;
    background:linear-gradient(100deg,#0a1f44 0%,rgba(10,31,68,.55) 32%,transparent 70%);}
.hero__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:80px;font-weight:700;color:#fff;opacity:.25;}
.hero__badge{position:absolute;z-index:2;top:12px;right:12px;background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.28);color:#fff;font-size:10px;font-weight:800;
    letter-spacing:.08em;text-transform:uppercase;padding:5px 10px;backdrop-filter:blur(6px);}
.hero__nav{position:absolute;z-index:3;top:50%;transform:translateY(-50%);display:grid;place-items:center;
    width:40px;height:40px;border:1px solid rgba(255,255,255,.3);cursor:pointer;
    background:rgba(10,31,68,.45);color:#fff;backdrop-filter:blur(6px);transition:.16s;}
.hero__nav:hover{background:var(--brand);border-color:var(--brand);}
.hero__nav--prev{left:12px;}
.hero__nav--next{right:12px;}

/* Right rail */
.rail{display:flex;flex-direction:column;gap:16px;}
.panel{background:var(--paper);border:1px solid var(--line);padding:16px 16px 12px;display:flex;flex-direction:column;flex:1;overflow:hidden;}
.panel__head{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:12px;}
.panel__title{font-size:12px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;
    color:var(--navy);margin:0;}
.panel__link,.panel__more{font-size:12px;font-weight:700;color:var(--brand);text-decoration:none;
    display:inline-flex;align-items:center;gap:5px;}
.panel__link span,.panel__more span{transition:transform .2s;}
.panel__link:hover span,.panel__more:hover span{transform:translateX(3px);}
.panel__more{padding:10px 0 12px;}

.tabs{display:flex;gap:16px;border-bottom:1px solid var(--line);margin-bottom:6px;}
.tab{appearance:none;background:none;border:0;cursor:pointer;padding:0 0 10px;font-family:var(--sans);
    font-size:11.5px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);
    border-bottom:2px solid transparent;transition:.16s;margin-bottom:-1px;}
.tab.is-active{color:var(--navy);border-bottom-color:var(--brand);}
.tab:hover{color:var(--navy);}

.feed{list-style:none;margin:0;padding:0;flex:1;overflow-y:auto;}
.feed__item{border-top:1px solid var(--line-soft);}
.feed__item:first-child{border-top:0;}
.feed__link{display:grid;grid-template-columns:minmax(0,1fr) 56px;gap:12px;align-items:start;
    padding:12px 0;text-decoration:none;color:var(--ink);transition:.16s;}
.feed__link:hover{opacity:.7;}
.feed__text{min-width:0;}
.feed__time{display:block;font-size:10.5px;font-weight:800;color:var(--brand);letter-spacing:.03em;margin-bottom:4px;}
.feed__title{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
    font-size:13px;line-height:1.3;font-weight:700;color:var(--navy);}
.feed__link:hover .feed__title{color:var(--brand);}
.feed__author{display:block;font-size:11.5px;color:var(--muted);margin-top:4px;}
.feed__thumb{width:56px;height:50px;overflow:hidden;flex:none;
    background:linear-gradient(135deg,var(--sky-050),#dbe6fb);}
.feed__thumb img{width:100%;height:100%;object-fit:cover;}
.feed__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:18px;font-weight:700;color:var(--brand);opacity:.5;}

.authors{list-style:none;margin:0;padding:0 0 10px;flex:1;overflow-y:auto;}
.authors__item{display:flex;align-items:center;gap:10px;padding:10px 0;border-top:1px solid var(--line-soft);}
.authors__item:first-child{border-top:0;}
.authors__meta{display:flex;flex-direction:column;gap:1px;min-width:0;margin-right:auto;}
.authors__meta strong{font-size:13px;font-weight:700;color:var(--navy);}
.authors__meta small{font-size:11px;color:var(--muted);}
.authors__count{font-size:10.5px;font-weight:700;color:var(--brand);white-space:nowrap;
    background:var(--sky-050);padding:4px 8px;}

.promo{background:linear-gradient(160deg,var(--sky-050),#e2edff);border:1px solid #d4e2fb;
    padding:20px 18px;margin-top:auto;}
.promo__title{font-family:var(--serif);font-size:18px;font-weight:700;color:var(--navy);margin:0 0 8px;}
.promo__text{font-size:13px;line-height:1.5;color:var(--ink-soft);margin:0 0 16px;}
.promo__foot{font-size:12px;color:var(--muted);margin:12px 0 0;text-align:center;}
.promo__foot a{color:var(--brand);font-weight:700;text-decoration:none;}

/* ---------- Row sections (Editor's Picks / Latest Analyses) ---------- */
.rowsec{display:flex;flex-direction:column;}
.rowsec__head{display:flex;align-items:center;gap:16px;padding-bottom:14px;margin-bottom:22px;
    border-bottom:2px solid var(--navy);}
.rowsec__head--split{flex-wrap:wrap;}
.rowsec__title{font-size:18px;font-weight:800;letter-spacing:.03em;text-transform:uppercase;
    color:var(--navy);margin:0;white-space:nowrap;}
.rowsec__more{margin-left:auto;font-size:12px;font-weight:700;color:var(--brand);text-decoration:none;
    display:inline-flex;align-items:center;gap:5px;white-space:nowrap;}
.rowsec__more span{transition:transform .2s;}
.rowsec__more:hover span{transform:translateX(3px);}
.filters{display:flex;flex-wrap:wrap;gap:7px;}
.filter{font-family:var(--sans);font-size:12px;font-weight:600;color:var(--ink-soft);background:transparent;
    border:1px solid var(--line);padding:6px 13px;cursor:pointer;transition:.16s;}
.filter:hover{border-color:var(--brand);color:var(--brand);}
.filter.is-active{background:var(--navy);border-color:var(--navy);color:#fff;}
.analyses .arow[hidden]{display:none;}

/* Editor's Picks grid */
.picks{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.pick{display:flex;flex-direction:column;background:var(--paper);border:1px solid var(--line);
    overflow:hidden;transition:.2s;}
.pick:hover{box-shadow:var(--shadow);transform:translateY(-2px);}
.pick__media{position:relative;display:block;aspect-ratio:16/10;overflow:hidden;
    background:linear-gradient(135deg,var(--sky-050),#dbe6fb);}
.pick__media img{width:100%;height:100%;object-fit:cover;transition:transform .45s;}
.pick:hover .pick__media img{transform:scale(1.05);}
.pick__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:40px;font-weight:700;color:var(--brand);opacity:.5;}
.pick__body{display:flex;flex-direction:column;flex:1;padding:14px 14px 16px;}
.pick__title{font-family:var(--serif);font-size:17px;line-height:1.24;font-weight:700;margin:0 0 8px;}
.pick__title a{color:var(--navy);text-decoration:none;}
.pick__title a:hover{color:var(--brand);}
.pick__desc{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
    font-size:13px;line-height:1.45;color:var(--ink-soft);margin:0 0 14px;}
.pick .byline{margin-top:auto;padding-top:12px;border-top:1px solid var(--line-soft);flex-wrap:wrap;}

/* Latest Analyses list */
.analyses{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:20px;}
.arow{display:grid;grid-template-columns:170px minmax(0,1fr) 34px;gap:20px;align-items:start;
    padding-bottom:20px;border-bottom:1px solid var(--line);}
.arow:last-child{border-bottom:0;padding-bottom:0;}
.arow__thumb{display:block;aspect-ratio:16/11;overflow:hidden;
    background:linear-gradient(135deg,var(--sky-050),#dbe6fb);}
.arow__thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.arow__thumb:hover img{transform:scale(1.05);}
.arow__ph{display:grid;place-items:center;width:100%;height:100%;font-family:var(--serif);
    font-size:34px;font-weight:700;color:var(--brand);opacity:.5;}
.arow__body{min-width:0;display:flex;flex-direction:column;}
.arow__body .tag{margin-bottom:8px;}
.arow__title{font-family:var(--serif);font-size:20px;line-height:1.22;font-weight:700;margin:0 0 8px;}
.arow__title a{color:var(--navy);text-decoration:none;}
.arow__title a:hover{color:var(--brand);}
.arow__desc{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
    font-size:14px;line-height:1.5;color:var(--ink-soft);margin:0 0 14px;}
.arow__foot{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:auto;}
.arow__date{font-size:12px;color:var(--muted);font-weight:600;}

/* ---------- Responsive ---------- */
@media(max-width:1080px){
    .lead{grid-template-columns:1fr;}
    .picks{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:820px){
    .hero{grid-template-columns:1fr;min-height:0;}
    .hero__media{aspect-ratio:16/9;order:-1;}
    .hero__media::before{background:linear-gradient(0deg,#0a1f44 0%,transparent 60%);}
    .hero__body{padding:28px 24px;}
    .hero__title{font-size:30px;}
    .rowsec__more{margin-left:0;flex-basis:100%;}
}
@media(max-width:600px){
    .nexus{gap:48px;}
    .picks{grid-template-columns:1fr;}
    .arow{grid-template-columns:120px minmax(0,1fr);grid-template-rows:auto auto;}
    .arow__title{font-size:19px;}
    .rowsec__title{font-size:17px;}
    .hero__title{font-size:26px;}
    .feed__link{grid-template-columns:minmax(0,1fr) 54px;}
}

/* Final public layout overrides */
.site-body *,.site-body *::before,.site-body *::after,.admin-shell *,.admin-shell *::before,.admin-shell *::after{border-radius:0 !important;}
.site-header__inner,.header-search__form{max-width:1360px;padding-left:10px;padding-right:10px;}
.site-main{max-width:1360px;padding:24px 10px 56px;min-height:calc(100vh - 74px);}
.nexus{display:grid;grid-template-columns:minmax(0,2.2fr) minmax(280px,1fr);column-gap:22px;row-gap:34px;align-items:stretch;}
.top-content{grid-column:1 / -1;grid-row:1;display:grid;grid-template-columns:minmax(0,2.2fr) minmax(280px,1fr);column-gap:22px;align-items:stretch;}
.left-content{grid-column:1;grid-row:1;display:flex;flex-direction:column;gap:34px;min-width:0;}
.lead{display:block;}
.hero{grid-column:auto;grid-row:auto;min-height:380px;}
.rail{grid-column:2;grid-row:1;align-self:stretch;min-height:0;height:auto;gap:16px;}
.rowsec{grid-column:auto;}
.rowsec--full{grid-column:1 / -1;grid-row:2;}
.rowsec + .rowsec{margin-top:0;}
.panel--feed{height:560px;min-height:560px;flex:0 0 560px;}
.feed[hidden]{display:none !important;}
.tabs{min-height:30px;align-items:flex-start;}
.tab{white-space:nowrap;}
.picks{gap:12px;}
.pick__media{aspect-ratio:16/9;}
.pick__body{padding:11px 11px 12px;}
.pick__title{font-size:15px;line-height:1.2;margin-bottom:6px;}
.pick__desc{font-size:12px;line-height:1.35;margin-bottom:9px;-webkit-line-clamp:2;}
.pick .byline{padding-top:9px;gap:6px;font-size:11px;}
.pick .avatar--sm{width:22px;height:22px;font-size:10px;}
.arow{grid-template-columns:120px minmax(0,1fr);gap:13px;padding-bottom:12px;}
.analyses{gap:14px;}
.arow__title{font-size:17px;line-height:1.18;margin-bottom:6px;}
.arow__desc{font-size:12.5px;line-height:1.4;margin-bottom:9px;}
.arow__body .tag{margin-bottom:5px;}
.arow__foot{gap:10px;}
.arow__date{font-size:11px;}
.hero__title{font-size:30px;max-width:22ch;}
.hero__summary{font-size:13px;max-width:55ch;}
.hero__body{padding:30px 34px 42px;}
.hero__nav{width:34px;height:34px;}
.hero__nav--prev{left:10px;}.hero__nav--next{right:10px;}
.hero__dots{left:34px;bottom:18px;}
.mainnav__link{padding-left:9px;padding-right:9px;}
.mainnav__list{gap:0;}
.mainnav{margin-left:auto;}
.site-header__actions{margin-left:0;}
.rowsec__head--split{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;column-gap:16px;row-gap:10px;}
.rowsec__head--split .rowsec__title{grid-column:1 / -1;}
.rowsec__head--split .filters{min-width:0;align-items:center;}
.rowsec__head--split .rowsec__more{margin-left:0;align-self:center;justify-self:end;}
.socials__link svg{display:block;width:19px;height:19px;}
.hero{display:block;min-height:440px;isolation:isolate;}
.hero__slide{position:absolute;inset:0;visibility:hidden;opacity:0;transition:opacity .55s ease,visibility .55s ease;}
.hero__slide.is-active{visibility:visible;opacity:1;z-index:1;}
.hero__slide>img{width:100%;height:100%;object-fit:cover;}
.hero__shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,17,42,.95) 0%,rgba(8,24,60,.72) 45%,rgba(10,28,70,.12) 100%),linear-gradient(0deg,rgba(6,17,42,.8),transparent 65%);}
.hero__body{position:absolute;inset:0;z-index:2;display:flex;flex-direction:column;justify-content:flex-end;padding:42px 44px 48px;}
.hero__badge{top:18px;right:18px;}
.hero__dots{position:absolute;z-index:4;left:44px;bottom:22px;display:flex;gap:7px;margin:0;}
.hero__dots button{width:24px;height:3px;padding:0;border:0;background:rgba(255,255,255,.35);cursor:pointer;transition:.2s;}
.hero__dots button.is-on{background:var(--sky);}
.hero__media{display:none;}
.panel{padding:14px 14px 10px;min-height:0;}
.rail{min-height:100%;}
.legal-page,.service-page{max-width:820px;margin:0 auto;color:var(--ink-soft);font-size:17px;line-height:1.8;}
.legal-page__lead,.service-page__lead{font-family:var(--serif);font-size:25px;line-height:1.45;color:var(--navy);margin:0 0 26px;}
.legal-page h2{font-family:var(--serif);font-size:28px;line-height:1.2;color:var(--navy);margin:38px 0 10px;}
.legal-page p{margin:0 0 18px;}
.service-page .btn{margin:0 0 28px;}
.service-page__list{border-top:2px solid var(--navy);}
.service-page__list a{display:grid;grid-template-columns:110px minmax(0,1fr) 82px;gap:16px;padding:16px 0;border-bottom:1px solid var(--line);text-decoration:none;align-items:baseline;}
.service-page__list span,.service-page__list time{font-size:12px;color:var(--brand);font-weight:700;}
.service-page__list strong{color:var(--navy);font-family:var(--serif);font-size:20px;line-height:1.2;}
.service-page__list time{text-align:right;color:var(--muted);font-weight:500;}
.sitemap-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;border-top:2px solid var(--navy);}
.sitemap-list a{padding:14px 0;border-bottom:1px solid var(--line);color:var(--brand);font-weight:700;text-decoration:none;}
.sitemap-list a:hover{color:var(--navy);}
@media(max-width:820px){
    .nexus{display:flex;flex-direction:column;gap:36px;}
    .top-content{display:flex;flex-direction:column;gap:36px;}
    .left-content{display:flex;gap:36px;}
    .lead{display:block;}
    .hero,.rowsec,.rail{grid-column:auto;grid-row:auto;}
    .rail{height:auto;}
    .rowsec--full{grid-column:auto;grid-row:auto;}
    .rowsec__head--split{display:flex;flex-wrap:wrap;}
    .rowsec__head--split .rowsec__more{margin-left:0;flex-basis:100%;}
    .panel--feed{height:auto;min-height:0;flex-basis:auto;}
    .hero{min-height:520px;}
    .hero__body{padding:28px 24px 54px;}
    .hero__dots{left:24px;}
}
@media(max-width:560px){
    .site-main{padding-left:8px;padding-right:8px;}
    .hero{min-height:500px;}
    .hero__body{padding:24px 20px 52px;}
    .service-page__list a{grid-template-columns:1fr;gap:4px;}
    .service-page__list time{text-align:left;}
    .sitemap-list{grid-template-columns:1fr;}
}
