:root {
    --navy: #0B1F3A;
    --white: #FFFFFF;
    --gold: #D99A2B;
    --text: #111827;
    --muted: #6B7280;
    --border: #E5E7EB;
    --bg: #F8FAFC;
    --red: #B91C1C;
    --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: sticky;
    top: 0;
    z-index: 50;
    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(280px, 1fr) auto auto; gap: 1.15rem; align-items: center; min-height: 78px; }
.logo { display: flex; gap: .75rem; align-items: center; color: var(--navy); }
.logo img {
    width: clamp(180px, 22vw, 260px);
    height: auto;
    max-height: 76px;
    object-fit: contain;
}
.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; max-width: 560px; }
.search-form input { min-height: 42px; background: rgba(248,250,252,.88); }
.search-form button { min-height: 42px; }
.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 { border-top: 1px solid var(--border); }
.nav-scroll { display: flex; gap: .1rem; overflow-x: auto; }
.nav-scroll a { padding: .68rem .76rem; color: var(--muted); font-size: .9rem; font-weight: 750; white-space: nowrap; border-bottom: 2px solid transparent; }
.nav-scroll a:hover { background: rgba(217,154,43,.1); color: var(--navy); }
.nav-scroll a[aria-current="page"] { color: var(--navy); border-bottom-color: var(--gold); }
.breaking-strip { background: var(--navy); color: var(--white); box-shadow: inset 0 -1px 0 rgba(255,255,255,.08); }
.breaking-inner { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 1rem; min-height: 44px; overflow: hidden; }
.breaking-inner strong { position: relative; z-index: 2; background: var(--red); color: #fff; border-radius: 5px; padding: .25rem .55rem; font-size: .78rem; letter-spacing: .02em; }
.ticker {
    min-width: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 28px), transparent 100%);
}
.ticker-track { display: flex; gap: 2rem; width: max-content; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-45%); } }
.ad-container { padding: .9rem 0 0; }
.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 {
    min-height: 96px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    display: grid;
    place-items: center;
    padding: .65rem;
    color: var(--muted);
    box-shadow: var(--shadow-soft);
}
.ad-label { display: block; color: var(--muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.ad-placeholder { border: 1px dashed var(--border); border-radius: 7px; width: 100%; min-height: 64px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(248,250,252,.85), rgba(217,154,43,.06)); }
.ad-slot-sidebar { min-height: 300px; }
.ad-slot-native, .ad-slot-article-inline { min-height: 220px; margin: 1.3rem 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .72fr) 300px; gap: 1rem; padding: 1.1rem 0 2.2rem; 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 img { width: 100%; aspect-ratio: 16 / 9; 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: 1rem; }
.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; }
.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(3, minmax(0, 1fr)); gap: 1rem; }
.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); }
.news-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.news-card.compact { display: grid; grid-template-columns: 118px minmax(0, 1fr); }
.news-card.compact img { height: 100%; aspect-ratio: 1 / 1; }
.card-body { padding: .95rem; display: grid; gap: .35rem; }
.card-body h3 { margin: 0; color: var(--navy); line-height: 1.23; font-size: 1.08rem; }
.card-body p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.58; }
.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); }
.article-layout { display: grid; grid-template-columns: minmax(0, 740px) 310px; gap: 2.2rem; padding: 2rem 0; align-items: start; justify-content: center; }
.article-main { min-width: 0; }
.breadcrumb { display: flex; gap: .45rem; color: var(--muted); font-size: .9rem; margin-bottom: .8rem; }
.category-badge { display: inline-flex; background: rgba(217,154,43,.13); color: #8a5b11; border-radius: 999px; padding: .28rem .7rem; font-weight: 800; font-size: .78rem; }
.article-main h1 { color: var(--navy); font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.08; margin: .55rem 0 .85rem; }
.subheadline { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.24rem); line-height: 1.6; }
.article-figure { margin: 1.2rem 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.article-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-figure figcaption { color: var(--muted); font-size: .85rem; padding: .75rem .9rem; }
.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; }
.toc { padding: 1rem; margin: 1.1rem 0; display: grid; gap: .45rem; }
.toc strong { color: var(--navy); }
.toc a { color: var(--muted); }
.article-body { font-size: clamp(1.08rem, 1.8vw, 1.2rem); line-height: 1.84; max-width: 720px; }
.article-body p { margin: 0 0 1.35rem; }
.article-body h2 { color: var(--navy); font-size: 1.68rem; line-height: 1.2; margin: 2.1rem 0 .75rem; }
.article-body h3 { color: var(--navy); margin: 1.4rem 0 .5rem; }
.article-body blockquote { border-left: 4px solid var(--gold); margin: 1.6rem 0; padding-left: 1rem; color: var(--muted); font-size: 1.35rem; }
.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; }
.pagination { display: flex; gap: .8rem; margin-top: 1.2rem; }
.pagination a { border: 1px solid var(--border); border-radius: 8px; padding: .55rem .8rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-cloud a { border: 1px solid var(--border); border-radius: 999px; padding: .4rem .7rem; }
.back-to-top { position: fixed; right: 1rem; bottom: 1rem; display: none; z-index: 40; }
.back-to-top.is-visible { display: block; }
.site-footer { margin-top: 2rem; background: #07172b; color: #dbe4ef; padding: 2.2rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; }
.footer-brand { display: inline-flex; align-items: center; color: #fff; font-size: 1.4rem; font-weight: 800; }
.footer-brand img {
    width: min(180px, 70vw);
    height: auto;
    border-radius: 8px;
    background: #fff;
}
.site-footer nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem; }
@media (max-width: 1020px) {
    .masthead, .hero-grid, .article-layout { grid-template-columns: 1fr; }
    .masthead { gap: .75rem; }
    .brand-copy { display: none; }
    .article-sidebar { position: static; }
    .card-grid, .reel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .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: 64px; }
    .logo img { width: 170px; max-height: 68px; }
    .search-form { grid-column: 1 / -1; max-width: none; 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; }
    .card-grid, .card-grid.two, .reel-grid, .footer-grid, .site-footer nav { grid-template-columns: 1fr; }
    .news-card.compact { grid-template-columns: 104px minmax(0, 1fr); }
    .lead-content h1, .article-main h1 { font-size: 2.05rem; }
    .page-hero { padding: 2rem 0; }
    .article-layout { padding-top: 1.3rem; }
    .article-body { font-size: 1.08rem; line-height: 1.82; }
    .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; }
}
