/* ============================================================
   SDS News Portal — premium theme
   ============================================================ */
:root {
    --at-red: #D40000;
    --at-red-dark: #A80000;
    --at-red-light: #FFF0F0;
    --at-black: #0A0A0A;
    --at-dark: #1A1A1A;
    --at-white: #FFFFFF;
    --at-bg: #F7F7F7;
    --at-border: #E5E5E5;
    --at-text: #1A1A1A;
    --at-muted: #757575;
    --at-font-hindi: 'Noto Sans Devanagari', 'Mukta', sans-serif;
    --at-font-head: 'Roboto Condensed', 'Arial Narrow', sans-serif;
    --at-font-body: 'Inter', -apple-system, sans-serif;
    --at-shadow: 0 1px 4px rgba(0,0,0,0.08);
    --at-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --at-ease: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body.news-portal {
    font-family: var(--at-font-body);
    background: var(--at-bg);
    color: var(--at-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
svg.social-icon-svg {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    display: block;
    flex-shrink: 0;
}
.news-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ---- UTILITY ---- */
.at-red { color: var(--at-red); }
.at-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--at-muted); }

/* ---- TOP STRIP ---- */
.news-topbar {
    background: var(--at-black);
    color: #aaa;
    font-size: 0.72rem;
    padding: 5px 0;
    border-bottom: 1px solid #222;
}
.news-topbar .news-container {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.news-topbar a { color: #ccc; transition: color var(--at-ease); }
.news-topbar a:hover { color: #fff; }
.news-topbar .live-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--at-red); color: #fff;
    padding: 2px 10px; border-radius: 3px;
    font-weight: 700; font-size: 0.68rem; letter-spacing: 0.5px;
}
.news-topbar .live-pill .dot {
    width: 6px; height: 6px; background: #fff; border-radius: 50%;
    animation: atPulse 1s infinite;
}

/* ---- MASTHEAD (header + nav sticky together) ---- */
.news-masthead {
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: visible;
    transition: box-shadow 0.35s ease;
}
.news-masthead.is-scrolled {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.16);
}
.news-header {
    background: var(--at-white);
    border-bottom: none;
    position: relative;
    z-index: 1;
    overflow: visible;
    padding-bottom: 0;
    transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.news-masthead.is-scrolled .news-header {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.news-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 6px; gap: 12px;
}
.news-nav {
    background: linear-gradient(180deg, #0d0d0d 0%, #141414 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 3px solid var(--at-red);
    position: relative;
    z-index: 2;
    overflow: visible;
    padding: 8px 0;
    transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.news-masthead.is-scrolled .news-nav {
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.news-nav .news-nav-inner {
    position: relative;
    display: flex;
    align-items: center;
}
.news-nav-logo {
    position: absolute;
    left: 4px;
    top: -12px;
    flex-shrink: 0;
    display: block;
    line-height: 0;
    margin: 0;
    padding: 0 !important;
    height: auto !important;
    overflow: visible !important;
    transform: none !important;
    box-shadow: none !important;
    z-index: 25;
}
.news-nav-logo::before,
.news-nav-logo::after {
    display: none !important;
}
.news-nav-logo-img {
    height: 58px;
    width: auto;
    max-width: 155px;
    min-width: 110px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
    transition: transform 0.25s ease;
}
.news-nav-logo:hover .news-nav-logo-img {
    transform: scale(1.03);
}
.news-header-start {
    display: flex; align-items: center; gap: 0;
}
.news-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}
/* Hamburger — hidden on desktop, shown in @media (max-width: 1024px) below */
.news-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--at-border);
    border-radius: 8px;
    background: var(--at-bg);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    flex-shrink: 0;
}
.news-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--at-text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.news-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.news-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.news-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.news-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 190;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.news-nav-backdrop.show {
    display: block;
    opacity: 1;
}
body.news-menu-open {
    overflow: hidden;
    touch-action: none;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}
/* Hidden on desktop nav bar; shown in mobile drawer after होम */
.news-nav-back-btn { display: none; }
.news-nav-sdsangam { display: none !important; }
.news-mobile-site-link { display: none; }
.news-header-logo {
    display: none;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}
.news-header-logo-img {
    height: 46px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}
.news-header-redline {
    width: 4px; height: 36px; flex-shrink: 0;
    background: linear-gradient(180deg, #E30613, #8B0000);
    border-radius: 2px; margin-right: 10px;
}
.news-brand img { width: 48px; height: 48px; border-radius: 4px; }
.news-brand-text .name {
    font-family: var(--at-font-hindi);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--at-red);
    line-height: 1;
    letter-spacing: -0.5px;
}
.news-brand-text .tag {
    font-family: var(--at-font-head);
    font-size: 0.62rem;
    color: var(--at-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
}
.news-header-actions { display: flex; align-items: center; gap: 10px; }
.news-search {
    display: flex; align-items: stretch;
    border: 2px solid var(--at-border);
    border-radius: 4px; overflow: hidden;
}
.news-search input {
    border: none; padding: 8px 12px; font-size: 0.85rem;
    width: 180px; outline: none; background: var(--at-bg);
}
.news-search button {
    background: var(--at-red); color: #fff; border: none;
    padding: 8px 14px; cursor: pointer; font-size: 0.9rem;
    transition: background var(--at-ease);
}
.news-search button:hover { background: var(--at-red-dark); }
.news-btn-live {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--at-red); color: #fff;
    padding: 9px 16px; border-radius: 4px;
    font-family: var(--at-font-head);
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
    transition: background var(--at-ease);
    white-space: nowrap;
}
.news-btn-live:hover { background: var(--at-red-dark); }
.news-btn-live .dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: atPulse 1s infinite; }
.news-back-link {
    font-size: 0.78rem; color: var(--at-muted); font-weight: 600;
    padding: 8px 12px; border: 1px solid var(--at-border); border-radius: 4px;
    transition: all var(--at-ease); white-space: nowrap;
}
.news-brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #E30613 0%, #8B0000 100%);
    color: #fff !important;
    border: none;
    padding: 9px 18px;
    border-radius: 4px;
    font-family: var(--at-font-head);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(227, 6, 19, 0.35);
}
.news-brand-btn:hover {
    background: linear-gradient(135deg, #c00510 0%, #6B0000 100%);
    color: #fff !important;
    border: none;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(227, 6, 19, 0.45);
}

/* ---- NAV (animated pills) ---- */
.news-nav-scroll.news-nav-scroll--at {
    flex: 1;
    min-width: 0;
    padding-left: 148px;
    min-height: 44px;
    align-items: center;
    overflow: visible;
}
.news-nav-scroll {
    display: flex; overflow-x: auto; scrollbar-width: none;
    gap: 8px; padding: 2px 4px; align-items: center;
}
.news-nav-redline {
    flex-shrink: 0; width: 4px; height: 30px;
    background: linear-gradient(180deg, #E30613, #8B0000);
    border-radius: 2px; margin-right: 10px; margin-left: 2px;
    box-shadow: 0 0 6px rgba(227, 6, 19, 0.35);
}
.news-nav-scroll::-webkit-scrollbar { display: none; }
.news-nav a:not(.news-nav-logo) {
    position: relative; z-index: 1;
    display: block; padding: 0 14px; height: 36px; line-height: 34px;
    color: #e0e0e0; font-family: var(--at-font-head);
    font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.35px;
    white-space: nowrap; border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
    transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease,
                background 0.25s ease, border-color 0.25s ease;
}
.news-nav a:not(.news-nav-logo):hover {
    color: #fff;
    background: rgba(227, 6, 19, 0.78);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(227, 6, 19, 0.38);
}
.news-nav a:not(.news-nav-logo).active {
    color: #fff; font-weight: 800;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.92) 0%, rgba(139, 0, 0, 0.92) 100%);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(227, 6, 19, 0.45);
}
.news-nav a.news-nav-home {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    color: #fff;
    font-weight: 800;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.news-nav a.news-nav-home:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.news-nav a.news-nav-home.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0%, rgba(227, 6, 19, 0.55) 100%);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow:
        0 4px 18px rgba(227, 6, 19, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.news-masthead.is-scrolled .news-nav a:not(.news-nav-logo) {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.news-masthead.is-scrolled .news-nav a.news-nav-home {
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

/* ---- BREAKING TICKER ---- */
.news-ticker {
    background: var(--at-red);
    display: flex; align-items: stretch;
    height: 50px; overflow: hidden;
    border: none;
    box-shadow: 0 2px 10px rgba(227,6,19,0.35);
    width: 96%; max-width: 1600px; margin: 10px auto;
    border-radius: 5px;
}
.news-ticker-label {
    background: transparent;
    color: #fff; font-family: var(--at-font-head);
    font-weight: 900; font-size: 0.92rem;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0 16px 0 18px; margin: 0;
    display: flex; align-items: center; gap: 0; flex-shrink: 0;
    border: none; box-shadow: none;
    font-style: italic;
}
.news-ticker-vline {
    display: inline-block; width: 2px; height: 20px;
    background: #fff; flex-shrink: 0;
    opacity: 0.9;
}
.news-ticker-vline--lead {
    margin: 0 0 0 14px;
    align-self: center;
}
.news-ticker-label .news-ticker-vline {
    margin-left: 14px;
}
.news-ticker-track { overflow: hidden; flex: 1; display: flex; align-items: center; }
.news-ticker-content {
    display: flex; white-space: nowrap;
    animation: atMarquee 35s linear infinite;
}
.news-ticker-content:hover { animation-play-state: paused; }
.news-ticker-content a {
    display: inline-flex; align-items: center; gap: 22px;
    padding: 0 26px; font-family: var(--at-font-hindi);
    font-size: 1.05rem; font-weight: 800; color: #fff;
    letter-spacing: 0.2px;
}
.news-ticker-content a::after { content: '◆'; font-size: 0.55rem; opacity: 0.7; }
@keyframes atMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes atPulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* ---- TRENDING TOPICS STRIP ---- */
.news-topics {
    background: var(--at-white);
    border-bottom: 1px solid var(--at-border);
    padding: 10px 0; overflow: hidden;
}
.news-topics-inner {
    display: flex; align-items: center; gap: 8px;
    overflow-x: auto; scrollbar-width: none;
}
.news-topics-inner::-webkit-scrollbar { display: none; }
.news-topics-label {
    font-family: var(--at-font-head); font-size: 0.72rem; font-weight: 900;
    color: var(--at-red); text-transform: uppercase; letter-spacing: 1px;
    flex-shrink: 0; padding-right: 8px; border-right: 2px solid var(--at-red);
}
.news-topic-tag {
    display: inline-block; padding: 4px 12px;
    background: var(--at-bg); border: 1px solid var(--at-border);
    border-radius: 20px; font-size: 0.78rem; font-weight: 600;
    color: var(--at-text); white-space: nowrap;
    transition: all var(--at-ease);
}
.news-topic-tag:hover { background: var(--at-red); color: #fff; border-color: var(--at-red); }

/* ---- AD HEADER ---- */
.news-ad-header { background: var(--at-white); border-bottom: 1px solid var(--at-border); padding: 10px 0; text-align: center; }
.news-ad-label { font-size: 0.6rem; color: #bbb; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }

/* ---- HERO GRID (top section) ---- */
.news-hero-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 2px;
    background: var(--at-border);
    margin: 16px 0;
    border: 1px solid var(--at-border);
}
.news-hero-main {
    position: relative; background: var(--at-black); overflow: hidden;
    display: block; color: #fff;
}
.news-hero-main .hero-img {
    width: 100%; aspect-ratio: 16/10; object-fit: cover;
    transition: transform 0.6s ease;
}
.news-hero-main:hover .hero-img { transform: scale(1.04); }
.news-hero-main .hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent 20%, rgba(0,0,0,0.92) 75%);
    padding: 50px 20px 18px;
}
.news-hero-side { display: flex; flex-direction: column; gap: 2px; }
.news-hero-side-item {
    flex: 1; display: flex; gap: 0; background: var(--at-white);
    overflow: hidden; color: var(--at-text);
    transition: background var(--at-ease);
    border-bottom: 1px solid var(--at-border);
}
.news-hero-side-item:last-child { border-bottom: none; }
.news-hero-side-item:hover { background: var(--at-red-light); }
.news-hero-side-item .side-img {
    width: 110px; flex-shrink: 0; object-fit: cover;
    aspect-ratio: 4/3;
}
.news-hero-side-item .side-body {
    padding: 10px 12px; display: flex; flex-direction: column; justify-content: center;
}
.news-hero-side-item h4 {
    font-family: var(--at-font-hindi);
    font-size: 0.82rem; font-weight: 700; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-hero-side-item .side-meta { font-size: 0.68rem; color: var(--at-muted); margin-top: 4px; }

/* Badges */
.at-badge {
    display: inline-block; font-family: var(--at-font-head);
    font-size: 0.62rem; font-weight: 900; letter-spacing: 1px;
    text-transform: uppercase; padding: 3px 8px; border-radius: 2px;
    margin-bottom: 8px; margin-right: 6px;
}
.at-badge-breaking { background: var(--at-red); color: #fff; animation: atPulse 1.5s infinite; }
.at-badge-cat { background: rgba(255,255,255,0.2); color: #fff; }
.at-badge-cat-dark { background: var(--at-red-light); color: var(--at-red); }
.news-hero-main h2 {
    font-family: var(--at-font-hindi);
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    font-weight: 900; line-height: 1.3; margin-bottom: 6px;
}
.news-hero-main p { font-size: 0.82rem; opacity: 0.8; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-hero-main .hero-meta { font-size: 0.7rem; opacity: 0.55; margin-top: 8px; }

/* ---- HERO SLIDER (secondary) ---- */
.news-hero { margin: 0 0 16px; }
.news-hero-slider { position: relative; overflow: hidden; background: var(--at-black); }
.news-hero-slide { display: none; position: relative; }
.news-hero-slide.active { display: block; }
.news-hero-slide a { display: block; position: relative; color: #fff; }
.news-hero-slide .slide-img { width: 100%; aspect-ratio: 16/6; object-fit: cover; }
.news-hero-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 20px 16px;
}
.news-hero-overlay h2 { font-family: var(--at-font-hindi); font-size: clamp(1rem,2vw,1.4rem); font-weight: 900; line-height: 1.3; }
.news-hero-arrows button {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.6); color: #fff; border: none;
    width: 36px; height: 36px; cursor: pointer; font-size: 1.1rem; z-index: 5;
    transition: background var(--at-ease);
}
.news-hero-arrows button:hover { background: var(--at-red); }
.news-hero-arrows .prev { left: 0; }
.news-hero-arrows .next { right: 0; }
.news-hero-dots { position: absolute; bottom: 10px; right: 14px; display: flex; gap: 5px; z-index: 5; }
.news-hero-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; }
.news-hero-dots span.active { background: var(--at-red); }

/* ---- CATEGORY PILLS ---- */
.news-cat-pills {
    display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
    background: var(--at-white); border: 1px solid var(--at-border);
    margin-bottom: 16px;
}
.news-cat-pills::-webkit-scrollbar { display: none; }
.news-cat-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 10px 18px; font-family: var(--at-font-head);
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.3px; white-space: nowrap;
    color: var(--at-text); border-right: 1px solid var(--at-border);
    transition: all var(--at-ease);
}
.news-cat-pill:last-child { border-right: none; }
.news-cat-pill:hover, .news-cat-pill.active { background: var(--at-red); color: #fff; }

/* ---- SECTION HEAD ---- */
.news-section-head {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 14px; background: var(--at-white);
    border-left: 5px solid var(--at-red);
    padding: 10px 14px;
    border-top: 1px solid var(--at-border);
    border-right: 1px solid var(--at-border);
    border-bottom: 1px solid var(--at-border);
}
.news-section-head h2 {
    font-family: var(--at-font-hindi);
    font-size: 1.05rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.3px;
}
.news-section-head .line { display: none; }

/* ---- NEWS CARD ---- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.news-card {
    background: var(--at-white);
    border: 1px solid var(--at-border);
    overflow: hidden; display: block;
    transition: box-shadow var(--at-ease), transform var(--at-ease);
    opacity: 0; transform: translateY(12px);
}
.news-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease, box-shadow var(--at-ease); }
.news-card:hover { box-shadow: var(--at-shadow-lg); transform: translateY(-3px); }
.news-card .card-img { overflow: hidden; position: relative; aspect-ratio: 16/10; background: #eee; }
.news-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .card-img img { transform: scale(1.05); }
.news-card .card-img .play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    display: grid; place-items: center;
    z-index: 2;
}
.news-card .card-body { padding: 12px 14px 14px; }
.news-card .card-cat {
    display: inline-block; font-family: var(--at-font-head);
    font-size: 0.62rem; font-weight: 900; letter-spacing: 0.8px;
    text-transform: uppercase; color: var(--at-red); margin-bottom: 6px;
}
.news-card .card-breaking {
    display: inline-block; background: var(--at-red); color: #fff;
    font-size: 0.58rem; font-weight: 900; padding: 2px 6px;
    margin-left: 4px; letter-spacing: 0.5px;
}
.news-card h3 {
    font-family: var(--at-font-hindi);
    font-size: 0.95rem; font-weight: 700; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    transition: color var(--at-ease);
}
.news-card:hover h3 { color: var(--at-red); }
.news-card .card-excerpt { font-size: 0.8rem; color: var(--at-muted); margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .card-meta {
    display: flex; justify-content: space-between;
    font-size: 0.7rem; color: #aaa;
    border-top: 1px solid var(--at-border); padding-top: 8px; margin-top: 10px;
}

/* ---- LIST CARD (list style) ---- */
.news-list { display: flex; flex-direction: column; gap: 0; background: var(--at-white); border: 1px solid var(--at-border); margin-bottom: 20px; }
.news-list-item {
    display: flex; gap: 14px; padding: 12px 14px;
    border-bottom: 1px solid var(--at-border);
    transition: background var(--at-ease);
}
.news-list-item:last-child { border-bottom: none; }
.news-list-item:hover { background: var(--at-red-light); }
.news-list-item .list-img { width: 100px; height: 68px; flex-shrink: 0; object-fit: cover; }
.news-list-item .list-body { flex: 1; min-width: 0; }
.news-list-item h4 {
    font-family: var(--at-font-hindi); font-size: 0.88rem; font-weight: 700; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-list-item:hover h4 { color: var(--at-red); }
.news-list-item .list-meta { font-size: 0.68rem; color: var(--at-muted); margin-top: 4px; }

/* ---- IN-FEED AD ---- */
.news-ad-infeed {
    grid-column: 1 / -1; background: var(--at-white);
    border: 1px dashed #ccc; padding: 14px; text-align: center;
    opacity: 0; transform: translateY(8px);
}
.news-ad-infeed.visible { opacity: 1; transform: translateY(0); transition: all 0.4s ease; }

/* ---- LAYOUT ---- */
.news-layout { display: grid; grid-template-columns: 1fr 300px; gap: 16px; margin: 16px 0 32px; align-items: start; }
.news-sidebar {
    align-self: start;
    position: sticky;
    top: 108px;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    scrollbar-width: thin;
}

/* ---- WIDGETS ---- */
.news-widget {
    background: var(--at-white); border: 1px solid var(--at-border);
    margin-bottom: 14px; overflow: hidden;
}
.news-widget-title {
    font-family: var(--at-font-hindi);
    font-size: 0.9rem; font-weight: 900;
    background: var(--at-black); color: #fff;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
}
.news-widget-title::before {
    content: ''; display: block; width: 4px; height: 18px;
    background: var(--at-red); flex-shrink: 0;
}
.news-trending-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 10px 14px; border-bottom: 1px solid var(--at-border);
    transition: background var(--at-ease);
}
.news-trending-item:last-child { border-bottom: none; }
.news-trending-item:hover { background: var(--at-red-light); }
.news-trending-num {
    font-family: var(--at-font-head);
    font-size: 2rem; font-weight: 900; color: var(--at-red);
    opacity: 0.25; line-height: 1; min-width: 30px; flex-shrink: 0;
    transition: opacity var(--at-ease);
}
.news-trending-item:hover .news-trending-num { opacity: 0.7; }
.news-trending-text {
    font-family: var(--at-font-hindi);
    font-size: 0.84rem; font-weight: 600; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-trending-item:hover .news-trending-text { color: var(--at-red); }
.news-ad-sidebar { padding: 12px; text-align: center; }

/* ---- ARTICLE PAGE ---- */
.news-article { background: var(--at-white); border: 1px solid var(--at-border); padding: 24px; }
.news-breadcrumb { font-size: 0.75rem; color: var(--at-muted); margin-bottom: 14px; }
.news-breadcrumb a { color: var(--at-red); font-weight: 600; }
.news-article h1 {
    font-family: var(--at-font-hindi);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900; line-height: 1.25; margin-bottom: 12px;
}
.news-article .subheading {
    font-family: var(--at-font-hindi);
    font-size: 1.05rem; color: var(--at-muted);
    border-left: 4px solid var(--at-red); padding-left: 14px;
    margin-bottom: 16px; line-height: 1.55;
}
.news-article-meta {
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    padding: 12px 0; border-top: 1px solid var(--at-border);
    border-bottom: 1px solid var(--at-border); margin-bottom: 20px;
    font-size: 0.8rem; color: var(--at-muted);
}
.news-article-meta .author-avatar {
    width: 34px; height: 34px; background: var(--at-red); color: #fff;
    border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 0.85rem;
}
.news-featured-img { width: 100%; max-height: 460px; object-fit: cover; margin-bottom: 6px; }
.news-img-caption { font-size: 0.75rem; color: #aaa; text-align: center; margin-bottom: 20px; font-style: italic; }
.news-article-content { font-family: var(--at-font-hindi); font-size: 1.05rem; line-height: 1.9; color: #222; }
.news-article-content p { margin-bottom: 16px; }
.news-article-content h2 { font-size: 1.3rem; font-weight: 800; margin: 24px 0 12px; border-left: 4px solid var(--at-red); padding-left: 12px; }
.news-article-content blockquote {
    border-left: 4px solid var(--at-red); padding: 14px 18px;
    background: var(--at-red-light); margin: 18px 0; font-style: italic;
}
.news-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 20px 0; }
.news-tag {
    display: inline-block; padding: 4px 12px; border: 1px solid var(--at-border);
    font-size: 0.75rem; font-weight: 600; color: var(--at-text);
    transition: all var(--at-ease);
}
.news-tag:hover { background: var(--at-red); color: #fff; border-color: var(--at-red); }

/* ---- SHARE ---- */
.news-share-float {
    position: fixed; left: 16px; top: 50%; transform: translateY(-50%) translateX(-70px);
    display: flex; flex-direction: column; gap: 6px; z-index: 90;
    transition: transform 0.35s ease;
}
.news-share-float.visible { transform: translateY(-50%) translateX(0); }
.news-share-float a, .news-share-float button {
    width: 40px; height: 40px; border-radius: 4px;
    display: grid; place-items: center; color: #fff; font-size: 0.85rem;
    border: none; cursor: pointer; transition: transform var(--at-ease);
}
.news-share-float a:hover, .news-share-float button:hover { transform: scale(1.1); }
.news-share-float .sh-wa { background: #25D366; }
.news-share-float .sh-fb { background: #1877F2; }
.news-share-float .sh-tw { background: #000; }
.news-share-float .sh-cp { background: var(--at-red); }
.news-share-mobile {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--at-white); border-top: 2px solid var(--at-red);
    padding: 10px 16px; z-index: 95; box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    transform: translateY(100%); transition: transform 0.35s ease;
}
.news-share-mobile.visible { transform: translateY(0); }
.news-share-mobile .share-row { display: flex; justify-content: center; gap: 10px; }
.news-share-mobile a, .news-share-mobile button {
    width: 42px; height: 42px; border-radius: 4px;
    display: grid; place-items: center; color: #fff; font-size: 0.95rem; border: none; cursor: pointer;
}

/* ---- CATEGORY PAGE ---- */
.news-cat-banner {
    background: var(--at-red); color: #fff;
    padding: 24px 0; margin-bottom: 16px;
    border-bottom: 4px solid var(--at-black);
    text-align: center;
}
.news-cat-banner h1 { font-family: var(--at-font-hindi); font-size: clamp(1.4rem,3vw,2rem); font-weight: 900; }
.news-cat-banner p { opacity: 0.85; font-size: 0.88rem; margin-top: 4px; }
.news-sort-bar { display: flex; gap: 0; margin-bottom: 14px; border: 1px solid var(--at-border); display: inline-flex; }
.news-sort-bar a {
    padding: 7px 18px; font-family: var(--at-font-head);
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    border-right: 1px solid var(--at-border); background: var(--at-white);
    transition: all var(--at-ease);
}
.news-sort-bar a:last-child { border-right: none; }
.news-sort-bar a.active, .news-sort-bar a:hover { background: var(--at-red); color: #fff; }

/* ---- PAGINATION ---- */
.news-pagination { display: flex; justify-content: center; gap: 4px; padding: 24px 0; flex-wrap: wrap; }
.news-pagination a, .news-pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 8px;
    font-size: 0.82rem; font-weight: 700;
    border: 1px solid var(--at-border); background: var(--at-white);
    transition: all var(--at-ease);
}
.news-pagination a:hover { background: var(--at-red); color: #fff; border-color: var(--at-red); }
.news-pagination span.current { background: var(--at-red); color: #fff; border-color: var(--at-red); }

/* ---- FOOTER ---- */
.news-footer { background: #3a060c; color: #f9e0a8; padding: 52px 0 0; margin-top: 32px; border-top: 4px solid #e0a020; }
.news-footer--main-style .news-footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px; padding-bottom: 36px;
}
.news-footer h4 {
    font-family: 'Cinzel', 'Roboto Condensed', serif;
    color: #ffd86b; margin-bottom: 16px; font-size: 1rem;
    letter-spacing: 0.5px;
}
.news-footer-desc { font-size: 0.88rem; line-height: 1.6; opacity: 0.88; margin-bottom: 14px; }
.news-footer-brand { display: inline-block; margin-bottom: 14px; }
.news-footer-logo {
    height: clamp(100px, 12vw, 140px); width: auto; max-width: 280px;
    object-fit: contain; display: block; background: transparent;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
}
.news-footer-social {
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px;
}
.news-footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(246, 196, 83, 0.12); border: 1px solid rgba(246, 196, 83, 0.3);
    color: #ffd86b; display: grid; place-items: center;
    font-size: 0.9rem; font-weight: 700; text-decoration: none;
    transition: all 0.25s ease;
}
.news-footer-social .social-icon-svg { width: 18px; height: 18px; display: block; }
.news-footer-social a.social-fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.news-footer-social a.social-yt:hover { background: #FF0000; color: #fff; border-color: #FF0000; }
.news-footer-social a.social-ig:hover { background: #E4405F; color: #fff; border-color: #E4405F; }
.news-footer-social a.social-tw:hover { background: #000; color: #fff; border-color: #000; }
.news-footer-social a.social-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.news-footer-social a:hover {
    background: #f6c453; color: #3a060c; transform: translateY(-2px);
}
.news-footer-links { list-style: none; }
.news-footer-links li { margin-bottom: 9px; }
.news-footer-links a {
    color: #f9e0a8; font-size: 0.86rem; opacity: 0.88;
    transition: color 0.2s, padding-left 0.2s;
}
.news-footer-links a:hover { color: #ffd86b; opacity: 1; padding-left: 4px; }
.news-footer p { font-size: 0.88rem; opacity: 0.88; margin-bottom: 9px; word-break: break-word; }
.news-footer-desc { word-break: break-word; }
.news-footer-bottom {
    border-top: 1px solid rgba(246, 196, 83, 0.2);
    padding: 18px 0; text-align: center;
    font-size: 0.8rem; opacity: 0.75; color: #f9e0a8;
}

/* ---- MOBILE AD ---- */
.news-ad-mobile-bottom {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--at-white); border-top: 3px solid var(--at-red);
    padding: 8px 16px; z-index: 200; box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
    transform: translateY(100%); transition: transform 0.35s ease;
}
.news-ad-mobile-bottom.visible { transform: translateY(0); }
.news-ad-mobile-bottom .close-ad {
    position: absolute; top: -13px; right: 12px;
    width: 26px; height: 26px; background: var(--at-black); color: #fff;
    border: none; border-radius: 50%; font-size: 0.7rem; cursor: pointer;
}

/* ---- PROGRESS ---- */
.news-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--at-red); z-index: 999; width: 0; transition: width 0.1s; }

/* ---- EMPTY ---- */
.news-empty { text-align: center; padding: 50px 20px; color: var(--at-muted); grid-column: 1/-1; }
.news-empty .icon { font-size: 2.5rem; margin-bottom: 10px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .news-topbar { display: none; }
    .news-nav-logo { display: none !important; }
    .news-header-logo { display: flex; }
    .news-header-redline { display: none; }
    .news-header-left {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        gap: 6px;
    }
    .news-header-logo {
        min-width: 0;
        overflow: hidden;
        flex-shrink: 1;
    }
    .news-header-logo-img {
        height: 32px;
        max-width: 92px;
        width: auto;
    }
    .news-menu-btn {
        display: flex;
        z-index: 220;
        width: 38px;
        height: 38px;
        min-width: 38px;
        border: 2px solid var(--at-red);
        background: #fff;
    }
    .news-menu-btn span {
        width: 20px;
        height: 2.5px;
        background: var(--at-red);
    }
    .news-header-inner {
        flex-wrap: wrap;
        gap: 6px;
        padding: 6px 0;
    }
    .news-header-actions {
        gap: 5px;
        flex-shrink: 0;
        margin-left: auto;
    }
    .news-search { display: none; }
    .news-brand-btn { display: none; }
    .news-mobile-site-link {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        padding: 5px 8px;
        font-family: var(--at-font-head);
        font-size: 0.6rem;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, #E30613 0%, #8B0000 100%);
        border-radius: 4px;
        white-space: nowrap;
        letter-spacing: 0.15px;
        box-shadow: 0 1px 6px rgba(227, 6, 19, 0.3);
        line-height: 1.1;
    }
    .news-mobile-site-link:hover { color: #fff; opacity: 0.92; }
    .news-btn-live {
        padding: 5px 8px;
        font-size: 0.6rem;
        gap: 4px;
        letter-spacing: 0.2px;
        line-height: 1.1;
        white-space: nowrap;
    }
    .news-btn-live .dot { width: 5px; height: 5px; flex-shrink: 0; }
    .at-theme-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        padding: 0;
        font-size: 0.85rem;
    }
    body.news-portal { overflow-x: hidden; }
    .news-masthead { max-width: 100vw; overflow-x: clip; }
    /* Side drawer — vertical scrollable list */
    .news-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: auto;
        width: min(300px, 88vw);
        height: 100%;
        height: 100dvh;
        max-height: 100dvh;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        transform: translateX(-105%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        z-index: 210;
        box-shadow: 4px 0 28px rgba(0, 0, 0, 0.4);
        pointer-events: none;
        visibility: hidden;
    }
    .news-nav.open {
        transform: translateX(0);
        pointer-events: auto;
        visibility: visible;
        max-height: 100dvh;
    }
    .news-nav .news-nav-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0 !important;
        overflow: hidden;
    }
    .news-nav-back-btn {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        width: 100%;
        min-height: 48px;
        padding: 14px 18px;
        font-family: var(--at-font-hindi);
        font-size: 0.95rem;
        font-weight: 700;
        color: #fff;
        background: #1a1a1a;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        text-align: left;
    }
    .news-nav-back-btn:hover { background: #252525; }
    .news-nav-scroll.news-nav-scroll--at,
    .news-nav.open .news-nav-scroll {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        flex: 1;
        min-height: 0;
        width: 100%;
        padding: 0;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        scrollbar-width: thin;
    }
    .news-nav a:not(.news-nav-logo) {
        display: flex;
        align-items: center;
        width: 100%;
        height: auto;
        min-height: 48px;
        line-height: 1.35;
        padding: 13px 18px;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: none;
        white-space: normal;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        box-shadow: none;
        transform: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .news-nav a:not(.news-nav-logo):hover,
    .news-nav a:not(.news-nav-logo).active {
        transform: none;
        border-left: 4px solid var(--at-red);
        padding-left: 14px;
    }
    .news-nav a:not(.news-nav-logo).active {
        background: rgba(227, 6, 19, 0.28);
        box-shadow: none;
    }
    .news-nav a.news-nav-home {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.06);
    }
    .news-nav a.news-nav-sdsangam {
        display: flex !important;
        background: linear-gradient(90deg, rgba(227, 6, 19, 0.92), rgba(139, 0, 0, 0.88));
        color: #fff !important;
        font-weight: 800;
        border-left: 4px solid #ffd86b;
        padding-left: 14px;
    }
    .news-nav a.news-nav-sdsangam:hover {
        background: linear-gradient(90deg, rgba(255, 40, 40, 0.95), rgba(160, 0, 0, 0.92));
    }
    .news-ticker {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 0;
        height: 42px;
    }
    .news-ticker-vline--lead { display: none; }
    .news-ticker-label {
        font-size: 0.58rem;
        padding: 0 6px 0 8px;
        letter-spacing: 0.4px;
    }
    .news-ticker-label .news-ticker-vline {
        margin-left: 6px;
        height: 14px;
        width: 1px;
    }
    .news-ticker-track {
        min-width: 0;
        flex: 1 1 0;
        overflow: hidden;
    }
    .news-ticker-content a {
        font-size: 0.86rem;
        font-weight: 700;
        padding: 0 12px;
        gap: 10px;
    }
    .news-hero-grid { grid-template-columns: 1fr; }
    .news-hero-side { flex-direction: row; flex-wrap: wrap; }
    .news-hero-side-item { width: calc(50% - 1px); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-layout { grid-template-columns: 1fr; }
    .news-sidebar { position: static; max-height: none; overflow: visible; }
    .news-footer--main-style .news-footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-bottom: 28px;
    }
    .news-footer {
        padding: 36px 0 0;
        overflow-x: hidden;
        max-width: 100vw;
    }
    .news-footer-logo { height: 72px; max-width: 180px; }
    .news-footer-bottom {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 0.75rem;
        line-height: 1.5;
        word-break: break-word;
    }
    .news-container { padding: 0 12px; max-width: 100%; }
    .news-share-float { display: none; }
    .news-share-mobile { display: block; }
}
@media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-hero-side-item { width: 100%; }
    .news-search input { width: 120px; }
    .news-nav-logo { margin: 0 10px 0 0; }
    .news-nav-logo-img { height: 52px; max-width: 120px; min-width: 90px; }
    .news-back-link { display: none; }
    .news-footer--main-style .news-footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .news-footer-logo { height: 68px; max-width: 160px; }
    .news-ad-mobile-bottom { display: block; }
    .news-header-logo-img { height: 30px; max-width: 84px; }
    .news-mobile-site-link { font-size: 0.58rem; padding: 4px 7px; }
    .news-btn-live { font-size: 0.58rem; padding: 4px 7px; }
    .at-theme-btn { width: 30px; height: 30px; min-width: 30px; font-size: 0.8rem; }
    .news-ticker { height: 40px; }
    .news-ticker-label {
        font-size: 0.5rem;
        padding: 0 4px 0 6px;
        letter-spacing: 0.2px;
    }
    .news-ticker-content a { font-size: 0.82rem; padding: 0 10px; }
}
