:root {
    --navy: #0B1F3A;
    --white: #FFFFFF;
    --gold: #D99A2B;
    --text: #111827;
    --muted: #6B7280;
    --border: #E5E7EB;
    --bg: #F8FAFC;
    --red: #B91C1C;
    --logo-blue: #09225D;
    --logo-blue-dark: #061742;
    --brand-red: #B40D19;
    --brand-red-dark: #8F0912;
    --green: #047857;
    --surface: #FFFFFF;
    --shadow: 0 10px 28px rgba(11, 31, 58, 0.07);
    --shadow-soft: 0 4px 14px rgba(11, 31, 58, 0.06);
    --radius: 8px;
    --container: 1180px;
}

[data-theme="dark"] {
    --navy: #EAF0F8;
    --white: #111827;
    --gold: #E0AE55;
    --text: #F8FAFC;
    --muted: #CBD5E1;
    --border: #263244;
    --bg: #0B1220;
    --surface: #111827;
    --shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Devanagari", Mangal, sans-serif;
    font-size: 17px;
    line-height: 1.72;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--surface);
    color: var(--text);
    padding: 0.8rem 0.9rem;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus, button:focus, a:focus {
    outline: 3px solid rgba(217, 154, 43, 0.35);
    outline-offset: 2px;
}
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); padding: .5rem; z-index: 99; }
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.button, button {
    border: 1px solid var(--navy);
    border-radius: 7px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    padding: 0.68rem .95rem;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.button:hover, button:hover { transform: translateY(-1px); }
.button.small { padding: .45rem .7rem; font-size: .88rem; }
.eyebrow, .kicker {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.meta, .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem 1rem;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 600;
}
.site-header {
    position: relative;
    z-index: 10;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(11, 31, 58, .03);
}
[data-theme="dark"] .site-header { background: rgba(17,24,39,.94); }
.utility-bar { border-bottom: 1px solid var(--border); color: var(--muted); font-size: .8rem; background: rgba(248, 250, 252, .78); }
[data-theme="dark"] .utility-bar { background: rgba(255,255,255,.035); }
.utility-inner { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.utility-inner nav { display: flex; gap: .75rem; }
.utility-chip {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    padding: 0;
}
button.utility-chip:hover { color: var(--gold); }
.masthead {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.35rem;
    align-items: center;
    min-height: 112px;
    padding-block: .45rem;
}
.logo {
    display: inline-flex;
    width: auto;
    max-width: 44vw;
    gap: .75rem;
    align-items: center;
    color: var(--navy);
}
.logo img {
    width: auto;
    height: clamp(86px, 7.3vw, 102px);
    max-width: min(360px, 44vw);
    object-fit: contain;
    object-position: left center;
    display: block;
}
.brand-copy { display: grid; gap: .14rem; }
.logo strong { display: block; font-size: .98rem; line-height: 1; letter-spacing: .01em; }
.logo small { display: block; color: var(--muted); font-size: .68rem; max-width: 220px; line-height: 1.35; }
.search-form { position: relative; display: grid; grid-template-columns: 1fr auto; gap: .5rem; width: min(520px, 100%); max-width: 520px; justify-self: end; }
.search-form input { min-height: 42px; background: rgba(248,250,252,.88); }
.search-form button,
.large-search button {
    min-height: 42px;
    border-color: var(--logo-blue);
    background: linear-gradient(180deg, var(--logo-blue) 0%, var(--logo-blue-dark) 100%);
    color: #fff;
    box-shadow: 0 10px 22px rgba(9, 34, 93, .16);
}
.search-form button:hover,
.large-search button:hover {
    border-color: var(--logo-blue-dark);
    background: var(--logo-blue-dark);
}
.search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: .4rem;
    z-index: 20;
}
.search-suggestions a { display: block; padding: .55rem; border-radius: 6px; }
.header-actions { display: flex; gap: .55rem; align-items: center; font-size: .92rem; font-weight: 750; }
.header-actions a { border-radius: 999px; padding: .38rem .5rem; }
.header-actions a:hover { background: rgba(217,154,43,.11); }
.theme-toggle, .menu-button { background: var(--surface); color: var(--navy); }
.menu-button { display: none; }
.category-nav {
    background: linear-gradient(180deg, #C5101F 0%, var(--brand-red) 54%, var(--brand-red-dark) 100%);
    border-top: 1px solid rgba(255,255,255,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 8px 18px rgba(11,31,58,.08);
}
.nav-scroll { display: flex; align-items: stretch; justify-content: space-between; gap: 0; overflow: visible; }
.nav-scroll a {
    flex: 1 1 0;
    min-width: 0;
    padding: .76rem .42rem .72rem;
    color: #fff;
    font-size: clamp(.74rem, .79vw, .9rem);
    font-weight: 780;
    line-height: 1.1;
    letter-spacing: .01em;
    text-align: center;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    text-shadow: 0 1px 1px rgba(0,0,0,.18);
    box-shadow: inset 1px 0 0 rgba(255,255,255,.08);
}
.nav-scroll a:hover { background: rgba(255,255,255,.12); color: #fff; }
.nav-scroll a[aria-current="page"] { color: #fff; border-bottom-color: #F3C565; background: rgba(0,0,0,.16); }
.ad-container { padding: .72rem 0 .2rem; }
.info-strip {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: .75rem;
    padding: .65rem 0 0;
}
.info-card {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(300px, 1fr);
    gap: .7rem;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    padding: .52rem .7rem;
    min-height: 88px;
    max-height: 98px;
    overflow: hidden;
    position: relative;
}
.info-card h2 { margin: .08rem 0 .12rem; color: var(--navy); font-size: .95rem; line-height: 1.16; }
.info-card p { margin: 0; color: var(--muted); font-size: .74rem; line-height: 1.28; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.info-card .eyebrow { font-size: .66rem; }
.info-card > .button { align-self: center; justify-self: end; padding: .42rem .62rem; font-size: .78rem; }
.info-brief { min-width: 0; }
.info-brief h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .28rem;
    margin: .04rem 0 .08rem;
}
.info-brief h2 strong {
    color: var(--navy);
    font-size: 1.18rem;
    line-height: 1;
}
.info-brief h2 span {
    color: var(--text);
    font-size: .82rem;
    font-weight: 760;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.info-mini-action {
    position: absolute;
    right: .5rem;
    top: .45rem;
    padding: .24rem .45rem !important;
    font-size: .68rem !important;
    border-color: var(--border);
    background: var(--surface);
    color: var(--navy);
}
.weather-stats, .market-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .38rem;
    width: 100%;
}
.market-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.weather-stat, .market-stat {
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: .34rem .42rem;
    background: rgba(248,250,252,.75);
    min-width: 0;
}
[data-theme="dark"] .weather-stat,
[data-theme="dark"] .market-stat { background: rgba(255,255,255,.04); }
.weather-stat span, .market-stat span {
    display: block;
    color: var(--muted);
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.weather-stat strong, .market-stat strong {
    display: block;
    color: var(--navy);
    font-size: .88rem;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.weather-stat small, .market-stat small { display: block; font-size: .64rem; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.market-up { color: var(--green); }
.market-down { color: var(--red); }
.market-muted { color: var(--muted); }
.ad-slot {
    width: 100%;
    display: grid;
    gap: .28rem;
    color: var(--muted);
    margin: 1.15rem auto;
}
.ad-label {
    display: block;
    color: #7A8493;
    font-size: .58rem;
    line-height: 1;
    font-weight: 850;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .08em;
}
.ad-frame {
    width: 100%;
    min-height: 96px;
    border: 1px solid rgba(148,163,184,.24);
    border-radius: 6px;
    background: #fff;
    display: grid;
    place-items: center;
    padding: .16rem;
    overflow: hidden;
}
.adsbygoogle {
    width: 100%;
    min-height: 90px;
}
.ad-placeholder {
    border: 1px dashed rgba(148,163,184,.48);
    border-radius: 6px;
    width: 100%;
    min-height: 64px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(248,250,252,.94), rgba(217,154,43,.05));
}
.ad-slot-sidebar .ad-frame { min-height: 280px; }
.ad-slot-native, .ad-slot-article-inline { width: min(980px, 100%); margin: 1.55rem auto; }
.ad-container .ad-slot-header { width: min(1189px, 100%); margin: 0 auto; }
.ad-slot-footer { width: min(var(--container), calc(100% - 32px)); margin: 1.5rem auto 0; }
.ad-slot.has-static-ad .ad-frame {
    min-height: 0;
    padding: .2rem;
}
.static-ad {
    display: block;
    width: 100%;
    overflow: hidden;
}
.ad-static-leaderboard { aspect-ratio: 1189 / 96; }
.ad-static-native { aspect-ratio: 1180 / 220; }
.static-ad img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
    display: block;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .72fr) 300px; gap: 1rem; padding: 1.1rem 0 1rem; align-items: start; }
.lead-story, .news-card, .latest-column, .side-card, .toc, .source-box, .author-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.lead-image, .card-image { display: block; background: #e9eef5; }
.lead-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.lead-image picture,
.lead-image img {
    width: 100%;
    height: 100%;
}
.lead-image img { object-fit: cover; }
.lead-content { padding: 1.15rem 1.2rem 1.25rem; }
.lead-content h1 { font-size: clamp(2rem, 4.2vw, 3.55rem); line-height: 1.06; color: var(--navy); margin: .35rem 0 .7rem; letter-spacing: 0; }
.lead-content p { color: var(--muted); font-size: 1.04rem; margin-top: 0; }
.secondary-stack { display: grid; gap: .62rem; }
.latest-column { padding: 1rem; display: grid; gap: .55rem; }
.latest-column h2 { margin: 0; color: var(--navy); }
.latest-link { display: grid; gap: .18rem; padding: .68rem 0; border-bottom: 1px solid var(--border); line-height: 1.35; }
.latest-link.with-thumb {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: .65rem;
    align-items: center;
}
.latest-thumb {
    display: block;
    overflow: hidden;
    border-radius: 7px;
    background: #e9eef5;
    aspect-ratio: 4 / 3;
}
.latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-copy {
    display: grid;
    gap: .16rem;
    min-width: 0;
}
.latest-link span { color: var(--gold); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.latest-copy strong {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.section-block { padding: 2.1rem 0; }
.recommended-block { padding-top: .65rem; }
.section-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 1rem; }
.section-heading h2 { margin: .15rem 0 0; color: var(--navy); font-size: clamp(1.45rem, 3vw, 2.05rem); line-height: 1.15; }
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.news-card { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.news-card:hover { transform: translateY(-2px); border-color: rgba(217,154,43,.65); box-shadow: var(--shadow); }
.card-image { overflow: hidden; }
.card-grid > .news-card:not(.compact) > .card-image {
    height: clamp(126px, 11vw, 158px);
}
.news-card img { width: 100%; height: 100%; object-fit: cover; }
.news-card.compact {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 112px;
}
.news-card.compact img { height: 100%; aspect-ratio: 1 / 1; }
.secondary-stack .news-card.compact {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 132px;
}
.secondary-stack .news-card.compact .card-body {
    padding: .64rem .72rem;
    gap: .24rem;
    align-content: center;
}
.secondary-stack .news-card.compact .kicker { font-size: .72rem; }
.secondary-stack .news-card.compact .card-body h3 {
    font-size: .98rem;
    line-height: 1.22;
    -webkit-line-clamp: 3;
}
.secondary-stack .news-card.compact .meta { display: none; }
.card-body { padding: .78rem .82rem .86rem; display: grid; gap: .28rem; }
.card-body h3 {
    margin: 0;
    color: var(--navy);
    line-height: 1.22;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-body p {
    color: var(--muted);
    margin: 0;
    font-size: .88rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-body .meta { gap: .28rem .55rem; font-size: .76rem; line-height: 1.25; }
.load-more-wrap { display: grid; place-items: center; margin-top: 1.2rem; }
.skeleton, .empty-state { border: 1px dashed var(--border); border-radius: var(--radius); padding: 1.4rem; color: var(--muted); background: var(--surface); }
.reel-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.reel-card { position: relative; min-height: 320px; border-radius: var(--radius); overflow: hidden; background: var(--navy); color: #fff; display: grid; align-content: end; padding: 1rem; box-shadow: var(--shadow-soft); }
.reel-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.reel-card span, .reel-card strong { position: relative; z-index: 1; }
.page-hero { background: linear-gradient(135deg, rgba(11,31,58,.055), rgba(217,154,43,.095)); border-bottom: 1px solid var(--border); padding: 2.6rem 0; }
.page-hero h1 { max-width: 850px; margin: .3rem 0; color: var(--navy); font-size: clamp(2rem, 4.5vw, 3.55rem); line-height: 1.08; }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.1rem; }
.large-search { display: grid; grid-template-columns: 1fr auto; gap: .7rem; max-width: 720px; margin-top: 1rem; }
.prose-page { max-width: 820px; padding: 2.4rem 0; }
.prose-page h1, .prose-page h2 { color: var(--navy); }
.prose-page h2 { margin-top: 1.8rem; }
.prose-page p { margin: .75rem 0; }
.prose-page ul { padding-left: 1.25rem; margin: .8rem 0 1rem; }
.prose-page li { margin: .4rem 0; }
.prose-page a { color: #8a5b11; font-weight: 760; text-decoration: underline; text-underline-offset: 3px; }
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 310px;
    gap: 2.35rem;
    padding: 2.15rem 0;
    align-items: start;
    justify-content: center;
}
.article-main { min-width: 0; }
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 700;
    margin-bottom: .85rem;
}
.category-badge {
    display: inline-flex;
    background: rgba(217,154,43,.13);
    color: #8a5b11;
    border: 1px solid rgba(217,154,43,.24);
    border-radius: 999px;
    padding: .28rem .72rem;
    font-weight: 850;
    font-size: .76rem;
}
.article-main h1 {
    max-width: 760px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", "Noto Serif", serif;
    font-size: clamp(2.25rem, 4.7vw, 4.15rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
    margin: .58rem 0 .88rem;
    text-wrap: balance;
}
.subheadline {
    max-width: 720px;
    color: #465568;
    font-size: clamp(1.08rem, 1.75vw, 1.28rem);
    font-weight: 520;
    line-height: 1.62;
    margin: 0 0 .95rem;
}
[data-theme="dark"] .subheadline { color: var(--muted); }
.article-meta {
    padding: .72rem 0 .1rem;
    border-top: 1px solid var(--border);
    color: #5b6675;
    font-size: .86rem;
    font-weight: 720;
}
.article-figure {
    margin: 1.35rem 0 1.55rem;
    background: #fff;
    border: 1px solid rgba(229,231,235,.92);
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(11,31,58,.08);
}
.article-figure picture {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #edf1f6;
}
.article-figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 34%;
    background: #edf1f6;
}
.article-figure figcaption {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.42;
    padding: .68rem .9rem .76rem;
    border-top: 1px solid rgba(229,231,235,.75);
    background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}
.share-row { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1rem 0; }
.share-row button, .share-row a { border: 1px solid var(--border); background: var(--surface); color: var(--navy); border-radius: 7px; padding: .55rem .8rem; font-weight: 700; }
.article-disclosure { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: -.15rem 0 1.2rem; }
.exam-brief {
    margin: 1.2rem 0 1.5rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(11,31,58,.14);
    border-left: 4px solid var(--brand-red);
    border-radius: 7px;
    background: #fff;
}
.exam-brief-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .85rem;
    margin-bottom: .75rem;
}
.exam-brief h2 {
    margin: 0;
    color: var(--navy);
    font-size: 1.12rem;
    line-height: 1.25;
}
.exam-brief dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .78rem 1rem;
    margin: 0;
}
.exam-brief div:first-child,
.exam-brief div:nth-child(2) {
    grid-column: 1 / -1;
}
.exam-brief dt {
    margin: 0 0 .2rem;
    color: #6b7280;
    font-size: .76rem;
    font-weight: 820;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.exam-brief dd {
    margin: 0;
    color: #1f2937;
    font-size: .93rem;
    line-height: 1.55;
}
.toc {
    padding: 1rem 1.05rem;
    margin: 1.15rem 0 1.35rem;
    display: grid;
    gap: .5rem;
    border-left: 3px solid var(--gold);
}
.toc strong { color: var(--navy); font-size: .95rem; }
.toc a { color: var(--muted); font-size: .92rem; line-height: 1.35; }
.article-body {
    max-width: 710px;
    color: #172033;
    font-size: clamp(1.08rem, 1.4vw, 1.19rem);
    line-height: 1.86;
    text-rendering: optimizeLegibility;
}
[data-theme="dark"] .article-body { color: var(--text); }
.article-body p {
    margin: 0 0 1.42rem;
    max-width: 68ch;
}
.article-body p:first-child {
    font-size: clamp(1.12rem, 1.55vw, 1.24rem);
    line-height: 1.82;
    color: #101827;
}
[data-theme="dark"] .article-body p:first-child { color: var(--text); }
.article-body h2 {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", "Noto Serif", serif;
    font-size: clamp(1.48rem, 2.4vw, 1.86rem);
    font-weight: 780;
    line-height: 1.18;
    letter-spacing: 0;
    margin: 2.25rem 0 .78rem;
}
.article-body h3 {
    color: var(--navy);
    font-size: 1.18rem;
    line-height: 1.28;
    margin: 1.55rem 0 .55rem;
}
.article-body a {
    color: #8a5b11;
    font-weight: 760;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article-body blockquote {
    border-left: 4px solid var(--gold);
    margin: 1.75rem 0;
    padding: .2rem 0 .2rem 1.05rem;
    color: #374151;
    font-family: Georgia, "Times New Roman", "Noto Serif", serif;
    font-size: clamp(1.22rem, 2vw, 1.42rem);
    line-height: 1.55;
}
.source-box, .author-box { padding: 1.05rem; margin: 1.35rem 0; }
.article-sidebar { position: sticky; top: 130px; display: grid; gap: 1rem; }
.side-card { padding: 1rem; display: grid; gap: .6rem; }
.side-card h2 { margin: 0; color: var(--navy); font-size: 1.2rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-cloud a { border: 1px solid var(--border); border-radius: 999px; padding: .4rem .7rem; }
.feed-status { margin: 1rem 0 0; text-align: center; color: var(--muted); font-size: .9rem; font-weight: 700; }
.site-footer {
    margin-top: 2rem;
    background: linear-gradient(180deg, #07172b 0%, #0B1F3A 58%, #07101f 100%);
    color: #dbe4ef;
    padding: 1.35rem 0 1rem;
    border-top: 4px solid var(--brand-red);
}
.footer-inner { display: grid; justify-items: center; gap: .8rem; text-align: center; }
.footer-brand {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    padding: .35rem .8rem;
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 36px rgba(0,0,0,.16);
}
.footer-brand img {
    width: auto;
    height: clamp(68px, 7vw, 84px);
    max-width: min(230px, 70vw);
    object-fit: contain;
}
.footer-slogan {
    margin: -.18rem 0 .05rem;
    color: #f4f7fb;
    font-size: .98rem;
    font-weight: 720;
    letter-spacing: 0;
}
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .45rem .55rem; max-width: 920px; }
.site-footer nav a {
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: .34rem .68rem;
    color: #dbe4ef;
    font-size: .82rem;
    font-weight: 720;
    line-height: 1.2;
    background: rgba(255,255,255,.035);
}
.site-footer nav a:hover { color: #fff; border-color: rgba(217,154,43,.65); background: rgba(217,154,43,.12); }
.footer-copy { margin: .1rem 0 0; color: #aebbd0; font-size: .78rem; }
@media (max-width: 1020px) {
    .hero-grid, .article-layout { grid-template-columns: 1fr; }
    .masthead { grid-template-columns: auto minmax(0, 1fr) auto; gap: .9rem; min-height: 98px; }
    .logo { max-width: 42vw; }
    .logo img { height: clamp(72px, 8vw, 86px); max-width: min(280px, 42vw); }
    .search-form { width: min(420px, 100%); }
    .nav-scroll { flex-wrap: wrap; justify-content: center; padding: .18rem 0; }
    .nav-scroll a { flex: 0 1 auto; padding: .62rem .82rem; font-size: .82rem; }
    .brand-copy { display: none; }
    .article-sidebar { position: static; }
    .article-layout { gap: 1.55rem; }
    .article-main h1 { max-width: 840px; }
    .article-body { max-width: 760px; }
    .card-grid, .reel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .card-grid > .news-card:not(.compact) > .card-image { height: 132px; }
    .info-strip { grid-template-columns: 1fr; }
    .info-card { grid-template-columns: minmax(0, .85fr) minmax(260px, 1fr); }
    .weather-stats, .market-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .market-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    body { font-size: 16px; }
    .utility-inner, .header-actions { display: none; }
    .container { width: min(var(--container), calc(100% - 24px)); }
    .masthead { grid-template-columns: 1fr auto; min-height: 78px; padding-block: .35rem; }
    .logo { max-width: 68vw; }
    .logo img { height: 64px; max-width: min(220px, 68vw); }
    .search-form { grid-column: 1 / -1; width: 100%; max-width: none; justify-self: stretch; display: none; }
    .search-form.is-open { display: grid; }
    .menu-button { display: inline-flex; justify-content: center; }
    .category-nav { display: none; }
    .category-nav.is-open { display: block; }
    .category-nav.is-open .nav-scroll { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; padding: 0; }
    .category-nav.is-open .nav-scroll a { flex: none; padding: .78rem .35rem; background: rgba(255,255,255,.05); }
    .card-grid, .card-grid.two, .reel-grid, .footer-grid, .site-footer nav { grid-template-columns: 1fr; }
    .ad-container {
        width: 100%;
        max-width: none;
    }
    .ad-container .ad-slot-header {
        width: 100%;
    }
    .ad-container .ad-slot-header .ad-frame {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }
    .ad-static-leaderboard { aspect-ratio: 336 / 96; }
    .ad-static-native { aspect-ratio: 336 / 220; }
    .news-card { display: grid; grid-template-columns: 106px minmax(0, 1fr); min-height: 132px; }
    .card-grid > .news-card:not(.compact) > .card-image,
    .news-card .card-image { height: 100%; min-height: 100%; }
    .news-card img { height: 100%; object-fit: cover; }
    .news-card .card-body { padding: .72rem .76rem; align-content: start; }
    .news-card .card-body h3 { font-size: .98rem; -webkit-line-clamp: 3; }
    .news-card .card-body p { font-size: .84rem; -webkit-line-clamp: 2; }
    .news-card .card-body .meta span:nth-child(1),
    .news-card .card-body .meta span:nth-child(2) { display: none; }
    .news-card.compact { grid-template-columns: 104px minmax(0, 1fr); }
    .lead-content h1 { font-size: 2.05rem; }
    .article-main h1 {
        font-size: clamp(2rem, 8vw, 2.72rem);
        line-height: 1.06;
        margin-top: .5rem;
    }
    .subheadline {
        font-size: 1.04rem;
        line-height: 1.58;
    }
    .article-meta {
        gap: .32rem .65rem;
        font-size: .8rem;
    }
    .article-figure {
        width: 100vw;
        margin: 1rem calc(50% - 50vw) 1.25rem;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        box-shadow: none;
    }
    .article-figure picture,
    .article-figure img {
        aspect-ratio: 16 / 10;
    }
    .article-figure figcaption {
        padding: .62rem 16px .7rem;
        font-size: .78rem;
    }
    .page-hero { padding: 2rem 0; }
    .article-layout { padding-top: 1.3rem; }
    .toc { margin: 1rem 0; padding: .9rem; }
    .exam-brief {
        margin: 1rem 0 1.25rem;
        padding: .9rem;
    }
    .exam-brief-head {
        display: grid;
        gap: .2rem;
    }
    .exam-brief dl {
        grid-template-columns: 1fr;
        gap: .72rem;
    }
    .exam-brief div:first-child,
    .exam-brief div:nth-child(2) {
        grid-column: auto;
    }
    .article-body {
        font-size: 1.07rem;
        line-height: 1.84;
        max-width: 100%;
    }
    .article-body p {
        margin-bottom: 1.28rem;
        max-width: none;
    }
    .article-body p:first-child {
        font-size: 1.1rem;
        line-height: 1.78;
    }
    .article-body h2 {
        font-size: 1.42rem;
        margin: 1.9rem 0 .65rem;
    }
    .large-search { grid-template-columns: 1fr; }
    .info-card { grid-template-columns: minmax(0, 1fr) minmax(150px, .9fr); min-height: 86px; max-height: 98px; }
    .weather-stats, .market-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .weather-stats .weather-stat:nth-child(n+3),
    .market-stats .market-stat:nth-child(n+3) { display: none; }
}
