/* ============================================================
   SDS News — Premium Full-Width + Dark Theme Layouts
   ============================================================ */

/* Full width inner */
.at-inner { width: 96%; max-width: 1600px; margin: 0 auto; padding: 0; }
@media (min-width: 1400px) { .at-inner { padding: 0; } }
.news-container { width: 96%; max-width: 1600px; margin: 0 auto; padding: 0; }

/* ---- DARK THEME ---- */
[data-theme="dark"] {
    --at-red: #FF1A1A;
    --at-bg: #0d0d0d;
    --at-white: #1a1a1a;
    --at-border: #2a2a2a;
    --at-text: #e8e8e8;
    --at-muted: #999;
}
[data-theme="dark"] body.news-portal { background: #0a0a0a; color: #e8e8e8; }
[data-theme="dark"] .news-header { background: #141414; border-bottom-color: var(--at-red); }
[data-theme="dark"] .news-masthead.is-scrolled .news-header {
    background: rgba(20, 20, 20, 0.82);
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .news-masthead.is-scrolled .news-nav {
    background: rgba(8, 8, 8, 0.78);
}
[data-theme="dark"] .news-brand-text .name { color: var(--at-red); }
[data-theme="dark"] .news-search input { background: #222; color: #fff; }
[data-theme="dark"] .news-search { border-color: #333; }
[data-theme="dark"] .news-topics { background: #141414; border-color: #222; }
[data-theme="dark"] .news-topic-tag { background: #222; border-color: #333; color: #ccc; }
[data-theme="dark"] .news-cat-pill { background: #1a1a1a; border-color: #333; color: #ccc; }
[data-theme="dark"] .news-card, [data-theme="dark"] .news-list, [data-theme="dark"] .news-widget,
[data-theme="dark"] .at-grid-card, [data-theme="dark"] .at-latest-card, [data-theme="dark"] .at-side-row,
[data-theme="dark"] .at-hero-col-left,
[data-theme="dark"] .at-hero-col-right,
[data-theme="dark"] .at-at-right { background: #1a1a1a; border-color: #333; }
[data-theme="dark"] .at-at-lead h3 { color: #e8e8e8; }
[data-theme="dark"] .at-section { background: transparent; }
[data-theme="dark"] .at-section-alt { background: #111; }
[data-theme="dark"] .news-article { background: #1a1a1a; border-color: #333; }
[data-theme="dark"] .at-theme-btn { background: #333; color: #fff; }

.at-theme-btn {
    width: 38px; height: 38px; border-radius: 4px; border: 1px solid var(--at-border);
    background: var(--at-bg); cursor: pointer; font-size: 1rem;
    display: grid; place-items: center; transition: all 0.2s;
}
.at-theme-btn:hover { border-color: var(--at-red); }

/* ---- HERO 3-COLUMN ---- */
.at-hero-3col-wrap { background: var(--at-bg); padding: 16px 0; border-bottom: 1px solid var(--at-border); }
.at-hero-3col-wrap.at-hero-dark {
    background:
        linear-gradient(180deg, rgba(20,4,10,0.94) 0%, rgba(38,8,16,0.92) 45%, rgba(15,3,8,0.95) 100%),
        url('../images/news/spiritual.jpg') center/cover no-repeat;
    border-bottom: 2px solid var(--at-red);
    padding: 20px 0;
}
.at-hero-3col {
    display: grid;
    grid-template-columns: minmax(250px, 27%) 1fr minmax(240px, 24%);
    gap: 16px;
    align-items: stretch;
    height: 400px;
}
.at-hero-col { display: flex; flex-direction: column; gap: 0; min-width: 0; height: 100%; }
.at-hero-col-left, .at-hero-col-right {
    background: var(--at-white);
    border: 1px solid var(--at-border);
}
.at-hero-dark .at-hero-col-left {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}
.at-hero-side-head {
    flex-shrink: 0;
    padding: 12px 16px;
    font-family: var(--at-font-head);
    font-size: 0.95rem; font-weight: 900;
    color: #fff; letter-spacing: 0.5px;
    border-bottom: none;
    background: linear-gradient(135deg, #E30613, #8B0000);
}
.at-hero-side-list {
    flex: 1;
    overflow: hidden;
    min-height: 0;
    padding: 0;
    background: #fff;
    position: relative;
}
.at-hero-side-track {
    display: flex;
    flex-direction: column;
}
.at-hero-side-item.at-sf-enter {
    animation: atSfEnter 0.55s ease forwards;
}
.at-hero-side-item.at-sf-exit {
    animation: atSfExit 0.55s ease forwards;
    pointer-events: none;
}
@keyframes atSfEnter {
    from { opacity: 0; transform: translateY(-100%); max-height: 0; }
    to { opacity: 1; transform: translateY(0); max-height: 88px; }
}
@keyframes atSfExit {
    from { opacity: 1; transform: translateY(0); max-height: 88px; }
    to { opacity: 0; transform: translateY(100%); max-height: 0; padding-top: 0; padding-bottom: 0; margin: 0; border: none; }
}
.at-hero-side-item {
    display: flex; gap: 11px; align-items: flex-start;
    padding: 11px 13px; border-bottom: 1px solid #eee;
    transition: background 0.25s, color 0.25s; color: #222;
    flex: 0 0 auto;
    height: 88px;
    overflow: hidden;
}
.at-hero-dark .at-hero-side-item { color: #222; }
.at-hero-side-item:last-child { border-bottom: none; }
.at-hero-dark .at-hero-side-item:hover {
    background: var(--at-red);
}
.at-hero-dark .at-hero-side-item:hover .at-hero-side-text h4,
.at-hero-dark .at-hero-side-item:hover .at-cat-sm,
.at-hero-dark .at-hero-side-item:hover .at-time {
    color: #fff !important;
}
.at-hero-side-item img {
    width: 84px; height: 62px; object-fit: cover; flex-shrink: 0; border-radius: 3px; display: block;
    border: 1px solid #ddd;
}
.at-hero-thumb { width: 84px; height: 62px; flex-shrink: 0; border-radius: 3px; }
.at-hero-side-text {
    min-width: 0; flex: 1; overflow: hidden;
    display: flex; flex-direction: column; gap: 3px;
}
.at-hero-side-text h4 {
    font-family: var(--at-font-hindi); font-size: 0.9rem; font-weight: 800; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    margin: 0;
}
.at-hero-dark .at-hero-side-text h4 { color: #1a1a1a; }
.at-hero-dark .at-cat-sm {
    color: var(--at-red); font-size: 0.68rem; line-height: 1.2; font-weight: 800;
    display: block;
}
.at-hero-dark .at-time {
    color: #999; font-size: 0.66rem; line-height: 1.2;
    display: block;
}
.at-hero-dark .at-hero-col-right.at-hero-col-media {
    background: linear-gradient(175deg, #5c0a0a 0%, #3a0606 50%, #2a0404 100%);
    border: 1px solid #7a1515;
    border-radius: 4px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.25);
    height: 100%;
}
/* Right column: Live TV + Ad */
.at-hero-col-media {
    display: flex; flex-direction: column;
    gap: 12px; padding: 12px;
    overflow: hidden;
}
.at-hero-live-widget {
    flex: 0 0 auto; display: flex; flex-direction: column;
    background: rgba(0, 0, 0, 0.35); min-height: 0; overflow: hidden;
    border-radius: 4px; border: 1px solid rgba(255, 255, 255, 0.12);
}
.at-hero-live-head {
    display: flex; align-items: center; gap: 7px; flex-shrink: 0;
    padding: 10px 14px; font-family: var(--at-font-head);
    font-size: 0.82rem; font-weight: 900; color: #fff;
    letter-spacing: 1px; background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.at-hero-live-dot {
    width: 7px; height: 7px; background: #ff3333; border-radius: 50%;
    animation: atPulse 1s infinite; box-shadow: 0 0 6px #ff3333;
}
.at-hero-live-player {
    position: relative; width: 100%;
    aspect-ratio: 16 / 9; max-height: 190px;
    background: #000;
}
.at-hero-live-video { width: 100%; height: 100%; display: block; object-fit: cover; }
.at-hero-live-fallback {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; padding: 18px 12px; color: #fff; text-decoration: none;
    background: rgba(0, 0, 0, 0.4);
    font-family: var(--at-font-head); font-size: 0.82rem; font-weight: 700;
    transition: background 0.2s;
    aspect-ratio: 16 / 9; max-height: 190px;
}
.at-hero-live-fallback:hover { background: rgba(0, 0, 0, 0.55); color: #fff; }
.at-hero-live-play {
    display: grid; place-items: center;
    filter: none;
}
.at-hero-live-brand { font-size: 0.78rem; color: #ffd86b; font-weight: 900; }
.at-hero-side-ad {
    flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center;
    padding: 12px; background: rgba(0, 0, 0, 0.25);
    border-radius: 4px; border: 1px solid rgba(255, 255, 255, 0.1);
}
.at-hero-ad-label {
    display: block; font-size: 0.55rem; color: rgba(255,255,255,0.5); text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 8px; text-align: center;
}
/* Brand ad card */
.at-brand-ad-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 14px 10px; gap: 8px; text-decoration: none; color: inherit;
    background: #fff; border-radius: 4px;
    border: 1px solid #e8e8e8;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.at-brand-ad-card:hover {
    border-color: var(--at-red);
    box-shadow: 0 4px 14px rgba(227, 6, 19, 0.15);
    color: inherit;
}
.at-brand-ad-logo {
    height: 56px; width: auto; max-width: 160px; object-fit: contain;
}
.at-brand-ad-card strong {
    font-family: var(--at-font-head); font-size: 0.78rem; font-weight: 900;
    color: var(--at-red); line-height: 1.3;
}
.at-brand-ad-card p {
    font-size: 0.68rem; color: #666; line-height: 1.45; margin: 0;
}
.at-brand-ad-cta {
    display: inline-block; margin-top: 4px;
    background: var(--at-red); color: #fff;
    padding: 7px 16px; border-radius: 3px;
    font-size: 0.7rem; font-weight: 800;
    font-family: var(--at-font-head);
}
.at-brand-ad-card:hover .at-brand-ad-cta { background: #a00000; }
/* Animated promo ad (replaces follow-us social widget) */
.at-promo-ad {
    display: block; text-decoration: none; color: inherit;
    background: #fff; border: 1px solid var(--at-border);
    border-radius: 6px; overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: box-shadow .25s, transform .25s;
}
.at-promo-ad:hover { box-shadow: 0 10px 28px rgba(139,0,0,0.22); transform: translateY(-3px); color: inherit; }
.at-promo-ad-label {
    font-size: 0.56rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: #fff; background: #111; text-align: center; padding: 5px 0; font-weight: 700;
}
.at-promo-ad-stage {
    position: relative; overflow: hidden;
    display: grid; place-items: center;
    min-height: 170px; padding: 26px 16px;
    background: radial-gradient(circle at 50% 30%, #7a1015 0%, #4a0006 55%, #2a0004 100%);
}
.at-promo-logo {
    position: relative; z-index: 3;
    max-width: 72%; max-height: 96px; width: auto; height: auto; object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
    animation: atPromoPulse 2.8s ease-in-out infinite;
}
@keyframes atPromoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}
/* rotating glow ring behind logo */
.at-promo-ring {
    position: absolute; z-index: 1; top: 50%; left: 50%;
    width: 230px; height: 230px; margin: -115px 0 0 -115px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255,196,83,0.55) 60deg, transparent 140deg, rgba(255,196,83,0.35) 220deg, transparent 320deg);
    animation: atPromoSpin 6s linear infinite;
    opacity: 0.65;
}
@keyframes atPromoSpin { to { transform: rotate(360deg); } }
/* sweeping shine */
.at-promo-shine {
    position: absolute; z-index: 2; top: 0; bottom: 0; width: 60%;
    left: -60%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.28), transparent);
    animation: atPromoShine 3.4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes atPromoShine {
    0% { left: -60%; }
    55%, 100% { left: 130%; }
}
.at-promo-live {
    position: absolute; z-index: 3; bottom: 10px; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0,0,0,0.5); color: #fff; font-size: 0.6rem; font-weight: 800;
    letter-spacing: 1px; padding: 4px 12px; border-radius: 999px;
    font-family: var(--at-font-head); white-space: nowrap;
}
.at-promo-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff3b3b; box-shadow: 0 0 8px #ff3b3b; animation: atPulse 1s infinite; }
.at-promo-ad-body { padding: 14px 16px 18px; text-align: center; }
.at-promo-ad-body strong {
    display: block; font-family: var(--at-font-hindi); font-size: 1.02rem; font-weight: 900;
    color: var(--at-red); margin-bottom: 6px;
}
.at-promo-ad-body p { font-size: 0.8rem; color: #555; line-height: 1.5; margin: 0 0 12px; }
.at-promo-cta {
    display: inline-block; background: var(--at-red); color: #fff;
    padding: 8px 20px; border-radius: 4px; font-weight: 800; font-size: 0.8rem;
    font-family: var(--at-font-head); transition: background .2s;
}
.at-promo-ad:hover .at-promo-cta { background: #a00000; }
[data-theme="dark"] .at-promo-ad { background: #1a1a1a; border-color: #333; }
[data-theme="dark"] .at-promo-ad-body p { color: #bbb; }

.at-sidebar-ad, .at-sidebar-ad .at-ad-label { text-align: center; }
.at-sidebar-ad .at-brand-ad-card, .at-sidebar-ad .at-brand-ad-card * { text-align: center; margin-left: auto; margin-right: auto; }
.at-hero-center-img { position: absolute; inset: 0; z-index: 0; }
.at-hero-center-img img { width: 100%; height: 100%; object-fit: cover; }
.at-hero-col-center { min-height: 340px; height: 100%; }
.at-hero-col-center .at-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid var(--at-border);
    background: #000;
    border-radius: 4px;
}
.at-hero-dark .at-hero-col-center .at-hero-slider { border-color: #333; }
.at-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; pointer-events: none; }
.at-hero-slide.active { opacity: 1; pointer-events: auto; z-index: 2; }
.at-hero-link { display: block; width: 100%; height: 100%; position: relative; color: #fff; overflow: hidden; }
.at-hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.at-hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
}
.at-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px 16px; z-index: 3; }
.at-hero-content h1 {
    font-family: var(--at-font-hindi);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    font-weight: 900; line-height: 1.3;
    text-shadow: 0 2px 14px rgba(0,0,0,0.7);
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.at-hero-content p {
    font-size: 0.8rem; opacity: 0.85; margin-top: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.at-hero-badge {
    display: inline-block; background: var(--at-red); color: #fff;
    font-family: var(--at-font-head); font-size: 0.62rem; font-weight: 900;
    letter-spacing: 1px; padding: 3px 10px; margin-bottom: 8px;
    animation: atPulse 1.5s infinite;
}
.at-hero-cat {
    display: inline-block; background: rgba(255,255,255,0.18); padding: 2px 8px;
    font-size: 0.65rem; font-weight: 700; margin-bottom: 6px;
}
.at-hero-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    background: rgba(0,0,0,0.5); color: #fff; border: none;
    width: 36px; height: 48px; font-size: 1.4rem; cursor: pointer;
}
.at-hero-nav:hover { background: var(--at-red); }
.at-hero-nav.prev { left: 0; }
.at-hero-nav.next { right: 0; }
.at-hero-dots { position: absolute; bottom: 12px; right: 16px; display: flex; gap: 5px; z-index: 10; }
.at-hero-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; }
.at-hero-dots span.active { background: var(--at-red); width: 24px; border-radius: 4px; }

/* Page layout: main + sticky sidebar */
.at-page-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
    padding: 20px 20px 40px;
}
.at-page-main { min-width: 0; }
.at-page-sidebar {
    position: sticky;
    top: 108px;
    align-self: start;
    max-height: calc(100vh - 116px);
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    z-index: 5;
}
.at-page-sidebar::-webkit-scrollbar { width: 5px; }
.at-page-sidebar::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.2); border-radius: 4px; }

/* Tri-column featured section (मनोरंजन / राजनीति / लाइफस्टाइल) */
.at-tri-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 280px;
    gap: 18px;
    align-items: stretch;
}
.at-tri-side { display: flex; flex-direction: column; gap: 14px; }
.at-tri-card {
    display: flex; flex-direction: column; color: inherit; text-decoration: none;
    background: var(--at-white); border: 1px solid var(--at-border); border-radius: 4px;
    overflow: hidden; transition: box-shadow .2s, transform .2s;
    flex: 1 1 0; min-height: 0;
}
.at-tri-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.12); transform: translateY(-2px); }
.at-tri-card-img { width: 100%; flex: 1 1 auto; min-height: 120px; overflow: hidden; background: #111; }
.at-tri-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.at-tri-card:hover .at-tri-card-img img { transform: scale(1.05); }
.at-tri-card-body { padding: 10px 12px; flex: 0 0 auto; }
.at-tri-card-body h4 {
    font-family: var(--at-font-hindi); font-size: 0.95rem; font-weight: 800; line-height: 1.35;
    margin: 4px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.at-tri-center { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.at-tri-lead {
    display: block; color: inherit; text-decoration: none;
    border: 1px solid var(--at-border); border-radius: 4px; overflow: hidden; background: var(--at-white);
}
.at-tri-headlines {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.at-tri-headline {
    display: flex; gap: 10px; align-items: flex-start;
    color: inherit; text-decoration: none;
    background: var(--at-white); border: 1px solid var(--at-border);
    border-radius: 4px; padding: 8px; overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}
.at-tri-headline:hover { box-shadow: 0 5px 14px rgba(0,0,0,0.1); transform: translateY(-2px); }
.at-tri-headline-img { width: 76px; height: 58px; flex-shrink: 0; border-radius: 3px; overflow: hidden; background: #111; }
.at-tri-headline-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.at-tri-headline:hover .at-tri-headline-img img { transform: scale(1.06); }
.at-tri-headline-text { min-width: 0; }
.at-tri-headline-text h4 {
    font-family: var(--at-font-hindi); font-size: 0.86rem; font-weight: 700; line-height: 1.32;
    margin: 3px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
[data-theme="dark"] .at-tri-headline { background: #1a1a1a; border-color: #333; }
[data-theme="dark"] .at-tri-headline-text h4 { color: #e8e8e8; }
@media (max-width: 560px) {
    .at-tri-headlines { grid-template-columns: 1fr; }
}
.at-tri-lead-img { position: relative; width: 100%; height: 300px; overflow: hidden; background: #111; }
.at-tri-lead-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.at-tri-lead:hover .at-tri-lead-img img { transform: scale(1.03); }
.at-tri-lead-img .at-cat-label {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: var(--at-red); color: #fff; padding: 5px 12px; border-radius: 3px;
    font-family: var(--at-font-head); font-weight: 800; font-size: 0.72rem;
}
.at-tri-lead h3 {
    font-family: var(--at-font-hindi); font-size: 1.35rem; font-weight: 900; line-height: 1.35;
    padding: 14px 16px 4px; color: var(--at-text);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.at-tri-lead p {
    padding: 0 16px 16px; color: var(--at-muted); font-size: 0.92rem; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
[data-theme="dark"] .at-tri-card,
[data-theme="dark"] .at-tri-lead { background: #1a1a1a; border-color: #333; }
[data-theme="dark"] .at-tri-card-body h4,
[data-theme="dark"] .at-tri-lead h3 { color: #e8e8e8; }
@media (max-width: 900px) {
    .at-tri-layout { grid-template-columns: 1fr; }
    .at-tri-side { display: grid; grid-template-columns: 1fr 1fr; }
    .at-tri-lead { order: -1; }
    .at-tri-lead-img { height: 220px; }
}
@media (max-width: 560px) {
    .at-tri-side { grid-template-columns: 1fr; }
}

/* Featured section (legacy) */
.at-at-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    align-items: start;
}
.at-at-left { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.at-at-lead { display: block; color: inherit; }
.at-at-lead-img {
    width: 100%; height: 360px; overflow: hidden;
    background: #111; border: 1px solid var(--at-border);
}
.at-at-lead-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.35s; }
.at-at-lead:hover .at-at-lead-img img { transform: scale(1.02); }
.at-at-lead h3 {
    font-family: var(--at-font-hindi); font-size: 1.05rem; font-weight: 900;
    line-height: 1.35; margin-top: 10px; color: var(--at-text);
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.at-at-sub {
    display: flex; gap: 10px; align-items: center; padding: 10px 0;
    border-top: 1px solid var(--at-border); color: inherit;
}
.at-at-sub-img { width: 100px; height: 68px; flex-shrink: 0; border-radius: 2px; }
.at-at-row-img { width: 88px; height: 60px; flex-shrink: 0; border-radius: 2px; }
.at-video-thumb { width: 80px; height: 54px; flex-shrink: 0; position: relative; }
.at-video-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Sidebar ad banner */
.at-sidebar-ad { padding: 0; overflow: hidden; }
.at-sidebar-ad .at-ad-label {
    font-size: 0.62rem; color: var(--at-muted); text-align: center;
    padding: 6px; background: var(--at-bg); text-transform: uppercase; letter-spacing: 1px;
}
.at-ad-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 250px; padding: 20px; text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #2a0000);
    color: #fff; transition: opacity 0.2s;
}
.at-ad-placeholder span { font-size: 2rem; margin-bottom: 8px; }
.at-ad-placeholder strong { font-family: var(--at-font-hindi); font-size: 0.95rem; margin-bottom: 6px; }
.at-ad-placeholder small { font-size: 0.75rem; opacity: 0.7; }
.at-ad-placeholder:hover { opacity: 0.9; }
.at-at-sub h4 {
    font-family: var(--at-font-hindi); font-size: 0.85rem; font-weight: 700; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.at-at-right {
    display: flex; flex-direction: column;
    border: 1px solid var(--at-border); background: var(--at-white);
}
.at-at-row {
    display: flex; gap: 10px; padding: 10px 12px;
    border-bottom: 1px solid var(--at-border); align-items: flex-start; color: inherit;
    transition: background 0.2s;
}
.at-at-row:last-child { border-bottom: none; }
.at-at-row:hover { background: var(--at-red-light); }
.at-at-row h4 {
    font-family: var(--at-font-hindi); font-size: 0.98rem; font-weight: 700; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.at-at-row-img { width: 104px; height: 72px; }
.at-at-row .at-cat-sm { font-size: 0.72rem; }
.at-at-row .at-time { font-size: 0.72rem; }

/* Sidebar widgets */
.at-social-links { display: flex; gap: 8px; padding: 14px; flex-wrap: wrap; justify-content: center; }
.at-social {
    width: 40px; height: 40px; border-radius: 50%;
    display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 0.9rem;
    transition: transform 0.2s;
}
.at-social .social-icon-svg { width: 20px; height: 20px; display: block; }
.at-social:hover { transform: scale(1.08); }
.at-social.fb { background: #1877F2; }
.at-social.tw { background: #000; }
.at-social.yt { background: #FF0000; }
.at-social.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.at-social.wa { background: #25D366; }
.at-social.link { background: #555; }
.at-poll-body { padding: 14px; }
.at-poll-q { font-family: var(--at-font-hindi); font-weight: 700; font-size: 0.88rem; line-height: 1.4; margin-bottom: 12px; }
.at-poll-opt { display: flex; align-items: center; gap: 8px; padding: 8px 10px; margin-bottom: 6px; border: 1px solid var(--at-border); border-radius: 4px; cursor: pointer; font-size: 0.85rem; }
.at-poll-opt:has(input:checked) { border-color: var(--at-red); background: var(--at-red-light); }
.at-poll-btn {
    width: 100%; margin-top: 10px; padding: 10px; background: var(--at-red); color: #fff;
    border: none; font-weight: 900; font-size: 0.82rem; cursor: pointer; border-radius: 3px;
}
.at-poll-btn:hover { opacity: 0.9; }
.at-poll-msg { margin-top: 10px; font-size: 0.8rem; color: var(--at-red); font-weight: 600; text-align: center; }
.at-live-widget { padding: 14px; }

/* Legacy hero strip — hidden */
.at-hero-strip { display: none; }

/* ---- SECTIONS ---- */
.at-section { padding: 24px 0; background: var(--at-white); }
.at-section-alt { background: var(--at-bg); }
.at-section-dark { background: #111; color: #e8e8e8; padding: 28px 0; }
.at-section-red { background: linear-gradient(180deg, #8B0000 0%, #D40000 100%); color: #fff; padding: 28px 0; }
.at-ad-band { background: var(--at-bg); padding: 16px 0; border-top: 1px solid var(--at-border); border-bottom: 1px solid var(--at-border); }

.at-sec-head {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 18px; padding-bottom: 0;
    border-bottom: none;
}
.at-sec-title {
    font-family: var(--at-font-hindi); font-size: 0.95rem; font-weight: 900;
    background: linear-gradient(135deg, #4a0000 0%, #8B0000 55%, #a50000 100%);
    color: #fff; padding: 8px 18px; border-radius: 3px; margin: 0;
    box-shadow: 0 2px 10px rgba(139,0,0,0.35);
    white-space: nowrap; flex-shrink: 0;
    letter-spacing: 0.3px;
}
.at-sec-line {
    flex: 1; height: 2px; min-width: 24px;
    background: linear-gradient(90deg, #8B0000 0%, rgba(227,6,19,0.35) 55%, rgba(227,6,19,0.08) 100%);
    margin: 0 14px;
}
.at-sec-line--light {
    background: linear-gradient(90deg, rgba(255,80,80,0.9) 0%, rgba(255,255,255,0.15) 70%, transparent 100%);
}
.at-sec-head .at-more { flex-shrink: 0; white-space: nowrap; }
.at-sec-head--light .at-sec-title {
    background: linear-gradient(135deg, #6b0000, #b00000);
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.at-sec-head h2 .at-tri { display: none; }
.at-sec-head-light h2 { color: #fff; border-color: rgba(255,255,255,0.15); }
.at-sec-head-light { border-bottom-color: rgba(255,255,255,0.15); }
.at-tri {
    display: inline-block; width: 0; height: 0;
    border-left: 8px solid var(--at-red); border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.at-tri-white { border-left-color: #fff; }
.at-more { font-family: var(--at-font-head); font-size: 0.78rem; font-weight: 700; color: var(--at-red); }
.at-more-light { color: #ffcccc; }
.at-more:hover { text-decoration: underline; }

/* ---- BREAKING (single ticker only — layout partial) ---- */
.at-breaking-strip { display: none; } /* disabled — use news-ticker in layout only */

/* Featured + list — COMPACT (fixes lifestyle/entertainment huge images) */
.at-feat-list { display: grid; grid-template-columns: 1.35fr 1fr; gap: 2px; background: var(--at-border); border: 1px solid var(--at-border); }
.at-feat-list-compact { max-height: 260px; }
.at-feat-main {
    position: relative; display: block; overflow: hidden; background: #111;
    height: 260px; max-height: 260px; min-height: unset;
}
.at-feat-main img, .at-feat-fallback {
    width: 100%; height: 260px; max-height: 260px;
    object-fit: cover; object-position: center;
    transition: transform 0.4s;
}
.at-feat-main:hover img { transform: scale(1.03); }
.at-feat-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.88));
    padding: 36px 14px 12px; color: #fff;
}
.at-feat-overlay h3 {
    font-family: var(--at-font-hindi); font-size: 0.95rem; font-weight: 900; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.at-feat-overlay p { font-size: 0.75rem; opacity: 0.8; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.at-feat-side { display: flex; flex-direction: column; background: var(--at-white); max-height: 260px; overflow: hidden; }
.at-feat-side-dark { background: rgba(0,0,0,0.35); }
.at-side-row {
    display: flex; gap: 10px; padding: 8px 12px; border-bottom: 1px solid var(--at-border);
    transition: background 0.2s; align-items: center; flex: 1; min-height: 0;
}
.at-side-row:last-child { border-bottom: none; }
.at-side-row:hover { background: var(--at-red-light); }
.at-side-row-dark { border-bottom-color: rgba(255,255,255,0.08); }
.at-side-row-dark:hover { background: rgba(255,255,255,0.06); }
.at-side-row img { width: 72px; height: 52px; object-fit: cover; flex-shrink: 0; border-radius: 2px; }
.at-side-row h4 {
    font-family: var(--at-font-hindi); font-size: 0.8rem; font-weight: 700; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.at-cat-label { font-family: var(--at-font-head); font-size: 0.6rem; font-weight: 900; color: var(--at-red); text-transform: uppercase; letter-spacing: 0.4px; }
.at-cat-sm { font-family: var(--at-font-head); font-size: 0.58rem; font-weight: 900; color: var(--at-red); text-transform: uppercase; letter-spacing: 0.4px; display: block; margin-bottom: 2px; }
.at-cat-light { color: #ffcccc; }
.at-time { font-size: 0.68rem; color: var(--at-muted); }
.at-img-ph { width: 100%; min-height: 200px; background: linear-gradient(135deg, #333, #111); }

/* Visual stories — auto marquee RTL */
.at-visual-marquee { overflow: hidden; width: 100%; mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.at-visual-track {
    display: flex; gap: 14px; width: max-content;
    animation: atVisualMarquee 45s linear infinite;
}
.at-visual-marquee:hover .at-visual-track { animation-play-state: paused; }
@keyframes atVisualMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.at-visual-card {
    flex: 0 0 180px;
    background: var(--at-white); border: 1px solid var(--at-border);
    overflow: hidden; transition: box-shadow 0.3s, transform 0.3s;
}
.at-visual-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.15); transform: translateY(-4px); }
.at-visual-img { aspect-ratio: 3/4; }
.at-visual-img img { width: 100%; height: 100%; object-fit: cover; }
.at-visual-cap { padding: 10px 12px; }
.at-visual-cap h4 { font-family: var(--at-font-hindi); font-size: 0.8rem; font-weight: 700; line-height: 1.35; margin-top: 4px; }

/* Image zoom + light shine effect (global) */
.at-img-zoom {
    position: relative; overflow: hidden;
}
.at-img-zoom img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.at-img-zoom::after {
    content: '';
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.3) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}
.at-img-zoom:hover img { transform: scale(1.08); }
.at-img-zoom:hover::after { transform: translateX(120%); }

/* 3-column grid for Tech / Vishw */
.at-3grid { grid-template-columns: repeat(3, 1fr) !important; }
.at-grid-body h4 {
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: 2.5em;
}

/* 4-grid */
.at-4grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.at-grid-card {
    background: var(--at-white); border: 1px solid var(--at-border);
    overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; display: block;
}
.at-grid-card:hover { box-shadow: var(--at-shadow-lg); transform: translateY(-3px); }
.at-grid-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.at-grid-body { padding: 12px; }
.at-grid-body h4 { font-family: var(--at-font-hindi); font-size: 0.88rem; font-weight: 700; line-height: 1.35; margin: 6px 0; }

/* State news — fixed height + text overlay */
.at-state-section { padding: 24px 0; }
.at-state-tabs {
    display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.at-state-tab {
    padding: 10px 16px; font-family: var(--at-font-hindi); font-size: 0.92rem; font-weight: 700;
    color: #333; background: #fff;
    border: none; border-right: 1px solid #e8e8e8;
    cursor: pointer; appearance: none;
    transition: background 0.2s, color 0.2s;
}
.at-state-tab:hover { background: var(--at-red); color: #fff; }
.at-state-tab.active { background: var(--at-red); color: #fff; }
.at-state-layout {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 10px;
    height: 320px;
    transition: opacity 0.2s;
}
.at-state-layout.at-state-loading { opacity: 0.45; pointer-events: none; }
.at-state-empty {
    grid-column: 1 / -1;
    display: grid; place-items: center;
    height: 100%; min-height: 200px;
    background: rgba(255,255,255,0.08);
    border: 1px dashed rgba(255,255,255,0.35);
    border-radius: 4px;
    color: #fff; font-family: var(--at-font-hindi); font-size: 1rem; font-weight: 700;
}
.at-state-overlay-card {
    display: block; position: relative; overflow: hidden;
    background: rgba(0,0,0,0.3); border-radius: 3px;
}
.at-state-main { height: 320px; }
.at-state-img-wrap {
    position: relative; width: 100%; height: 100%; overflow: hidden;
}
.at-state-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.at-state-grid {
    display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
    gap: 8px; height: 320px;
}
.at-state-card { height: 100%; min-height: 0; }
.at-state-card .at-state-img-wrap,
.at-state-main .at-state-img-wrap { height: 100%; }
.at-state-overlay-card:hover img { transform: scale(1.05); }
.at-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 28px 12px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 55%, transparent 100%);
    color: #fff;
}
.at-img-overlay-sm { padding: 20px 8px 8px; }
.at-img-overlay h3 {
    font-family: var(--at-font-hindi); font-size: 0.95rem; font-weight: 900; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.at-img-overlay h4 {
    font-family: var(--at-font-hindi); font-size: 0.72rem; font-weight: 700; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.at-img-overlay .at-cat-label { color: #ffcccc; margin-bottom: 4px; display: block; }
.at-state-overlay-card:hover .at-img-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 60%, transparent 100%);
}

/* ---- DHARM ZONE (redesigned) ---- */
.at-dharm-zone {
    position: relative; padding: 32px 0 28px; overflow: hidden;
    margin: 0 -20px; padding-left: 20px; padding-right: 20px;
}
.at-dharm-bg-layer {
    position: absolute; inset: 0; z-index: 0;
    background:
        linear-gradient(145deg,
            rgba(120,40,0,0.88) 0%,
            rgba(180,60,10,0.85) 25%,
            rgba(100,15,5,0.9) 55%,
            rgba(60,20,0,0.92) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(255,200,80,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(200,50,0,0.2) 0%, transparent 45%),
        var(--dharm-bg) center/cover no-repeat;
}
.at-dharm-animated .at-dharm-bg-layer {
    animation: dharmBgShift 12s ease-in-out infinite alternate;
}
@keyframes dharmBgShift {
    0% { background-size: 105% auto; filter: brightness(0.85); }
    100% { background-size: 115% auto; filter: brightness(1.05); }
}
.at-dharm-glow {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        radial-gradient(ellipse 50% 40% at 20% 40%, rgba(255,200,80,0.22) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 80% 60%, rgba(220,80,0,0.2) 0%, transparent 50%);
    animation: dharmGlowPulse 6s ease-in-out infinite alternate;
}
@keyframes dharmGlowPulse {
    from { opacity: 0.6; } to { opacity: 1; }
}
.at-dharm-om {
    position: absolute; z-index: 1; pointer-events: none;
    font-size: 3.5rem; opacity: 0.1; color: #FFD700;
    text-shadow: 0 0 30px rgba(255,200,0,0.5);
}
.at-dharm-animated .at-dharm-om-1 { top: 10%; left: 5%; animation: omFloat 14s linear infinite; }
.at-dharm-animated .at-dharm-om-2 { bottom: 15%; right: 8%; animation: omFloat 18s linear infinite reverse; }
@keyframes omFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}
.at-dharm-wrap { position: relative; z-index: 2; }
.at-dharm-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.15);
}
.at-dharm-head h2 {
    font-family: var(--at-font-hindi); font-size: 1.2rem; font-weight: 900; color: #fff;
    display: flex; align-items: center; gap: 8px;
}
.at-dharm-main-grid {
    display: grid; grid-template-columns: 1fr 300px; gap: 20px; align-items: stretch;
}
.at-dharm-news-col {
    display: grid; grid-template-columns: 1.25fr 1fr; gap: 14px;
    background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.1);
    padding: 14px; border-radius: 4px;
    align-self: stretch; min-height: 100%;
}
.at-dharm-lead { display: flex; flex-direction: column; color: #fff; overflow: hidden; border-radius: 3px; height: 100%; }
.at-dharm-lead-img { flex: 1; min-height: 200px; background: #111; aspect-ratio: unset; }
.at-dharm-lead-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.at-dharm-lead-body { padding: 12px 4px 4px; }
.at-dharm-lead-body h3 {
    font-family: var(--at-font-hindi); font-size: 1rem; font-weight: 900; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.at-dharm-lead-body p { font-size: 0.78rem; opacity: 0.75; margin-top: 6px; line-height: 1.4; }
.at-dharm-side-list { display: flex; flex-direction: column; gap: 0; }
.at-dharm-side-item {
    display: flex; gap: 10px; align-items: flex-start; padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08); color: #eee;
    transition: background 0.2s;
}
.at-dharm-side-item:last-child { border-bottom: none; }
.at-dharm-side-item:hover { background: rgba(255,255,255,0.05); padding-left: 4px; }
.at-dharm-side-thumb { width: 72px; height: 52px; flex-shrink: 0; border-radius: 2px; }
.at-dharm-side-item h4 {
    font-family: var(--at-font-hindi); font-size: 0.78rem; font-weight: 700; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.at-dharm-side-item .at-time { color: rgba(255,255,255,0.45); font-size: 0.65rem; }

/* Zodiac wheel */
.at-dharm-rashi-panel {
    background: linear-gradient(180deg, rgba(80,30,0,0.75), rgba(40,10,0,0.85));
    border: 1px solid rgba(255,200,100,0.25); border-radius: 4px; overflow: hidden;
    display: flex; flex-direction: column; height: 100%;
}
.at-zodiac-wheel-wrap {
    padding: 16px; display: flex; justify-content: center;
    background: linear-gradient(180deg, rgba(255,180,50,0.12), transparent);
}
.at-zodiac-wheel { position: relative; width: 160px; height: 160px; }
.at-zodiac-ring-img {
    width: 100%; height: 100%; object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255,180,0,0.4));
}
.at-zodiac-wheel.is-spinning .at-zodiac-ring-img {
    animation: zodiacSpin 24s linear infinite;
}
@keyframes zodiacSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.at-zodiac-core {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 64px; height: 64px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,0,0,0.9), rgba(80,0,0,0.95));
    border: 2px solid #FFD700; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    box-shadow: 0 0 20px rgba(255,200,0,0.35);
}
.at-zodiac-core-icon { font-size: 1.3rem; line-height: 1; }
.at-zodiac-core small {
    font-family: var(--at-font-hindi); font-size: 0.48rem; color: #ffeedd;
    margin-top: 2px; line-height: 1.1; max-width: 52px;
}
.at-rashi-scroll {
    max-height: 180px; overflow-y: auto; padding: 0 10px;
    scrollbar-width: thin; scrollbar-color: #D40000 transparent;
}
.at-rashi-chip {
    display: flex; gap: 8px; padding: 8px 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06); color: #ccc; font-size: 0.72rem;
}
.at-rashi-chip-icon { font-size: 1.1rem; flex-shrink: 0; }
.at-rashi-chip strong { color: #fff; font-family: var(--at-font-hindi); font-size: 0.78rem; display: block; }
.at-rashi-chip p { opacity: 0.7; margin-top: 2px; line-height: 1.3; }
.at-rashi-cta {
    display: block; text-align: center; padding: 12px; background: var(--at-red);
    color: #fff; font-weight: 700; font-size: 0.82rem;
}

/* Dharm videos */
.at-dharm-videos-block {
    margin-top: 20px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.at-dharm-videos-head {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.at-dharm-videos-head h3 {
    font-family: var(--at-font-hindi); font-size: 0.95rem; font-weight: 900; color: #fff;
}
.at-dharm-videos-row {
    display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin;
}
.at-dharm-video-card {
    flex: 0 0 200px; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px; overflow: hidden; cursor: pointer; text-align: left;
    transition: transform 0.25s, box-shadow 0.25s; color: #eee; padding: 0;
}
.at-dharm-video-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); border-color: var(--at-red); }
.at-dharm-video-thumb { aspect-ratio: 16/10; position: relative; background: #111; }
.at-dharm-play {
    position: absolute; bottom: 8px; right: 8px; z-index: 3;
    display: grid; place-items: center;
}
.at-dharm-video-card h4 {
    font-family: var(--at-font-hindi); font-size: 0.78rem; font-weight: 700;
    padding: 8px 10px 4px; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.at-dharm-vid-tag {
    display: block; padding: 0 10px 8px; font-size: 0.62rem; color: #ffaaaa; font-weight: 700; text-transform: uppercase;
}

/* News video section — blue style */
.at-news-video-zone {
    background: linear-gradient(180deg, #061224 0%, #0a1a38 45%, #061224 100%);
    padding: 24px 18px 22px;
    margin: 20px 0 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
    clear: both;
    position: relative;
}
.at-news-video-zone::before { display: none; }
.at-news-video-inner { width: 100%; position: relative; z-index: 1; }
.at-sec-head-video { margin-bottom: 16px; }
.at-news-video-grid {
    display: grid; grid-template-columns: 1fr 1.55fr 1fr; gap: 12px;
    align-items: stretch;
}
.at-nv-side-col { display: flex; flex-direction: column; gap: 12px; }
.at-nv-card, .at-nv-center {
    border: none; background: none; padding: 0;
    cursor: pointer; text-align: left; width: 100%;
    display: flex; flex-direction: column;
}
.at-nv-box {
    border: 2px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.42);
    padding: 6px;
    border-radius: 3px;
    height: 100%;
    display: flex; flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.at-nv-box--center { flex: 1; }
.at-nv-box:hover {
    border-color: rgba(227, 6, 19, 0.75);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}
.at-nv-thumb, .at-nv-center-thumb {
    position: relative; width: 100%; overflow: hidden; border-radius: 2px; background: #111;
    flex-shrink: 0;
}
.at-nv-thumb { aspect-ratio: 16 / 10; }
.at-nv-center-thumb {
    flex: 1;
    min-height: 0;
    aspect-ratio: unset;
}
@media (min-width: 1025px) {
    .at-nv-center-thumb { min-height: 268px; }
}
.at-nv-thumb img, .at-nv-center-thumb img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.at-nv-title {
    margin: 0; padding: 8px 10px;
    background: linear-gradient(135deg, #c40000 0%, #8b0000 100%);
    font-family: var(--at-font-hindi); font-size: 0.74rem; font-weight: 700;
    color: #fff; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    border-radius: 0 0 2px 2px;
}
.at-nv-title--center {
    font-size: 0.86rem; padding: 10px 12px;
    -webkit-line-clamp: 3;
}
.at-nv-play-sm {
    position: absolute; bottom: 6px; left: 6px; z-index: 3;
    display: grid; place-items: center;
}
.at-nv-play-lg {
    position: absolute; bottom: 10px; right: 10px; z-index: 3;
    display: grid; place-items: center;
}
.at-nv-more-wrap { text-align: center; margin-top: 22px; padding-top: 8px; }
.at-nv-more-btn {
    display: inline-block; padding: 10px 28px;
    background: var(--at-red); color: #fff; border-radius: 4px;
    font-family: var(--at-font-hindi); font-weight: 700; font-size: 0.88rem;
    text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.at-nv-more-btn:hover { background: #a00000; color: #fff; transform: translateY(-1px); }

/* Crime / जुर्म section */
.at-section-crime-wrap { padding: 0; background: transparent; }
.at-crime-block {
    background: linear-gradient(160deg, #14141c 0%, #0e0e14 50%, #1a1018 100%);
    border: 1px solid #2a2a35;
    border-left: 4px solid #8B0000;
    border-radius: 5px;
    padding: 22px 18px 20px;
    margin: 20px 0;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.35);
}
.at-crime-block .at-sec-title {
    background: linear-gradient(135deg, #1a0000, #5c0000);
}
.at-crime-block .at-grid-card {
    background: #1c1c26; border-color: #333;
}
.at-crime-block .at-grid-body h4 { color: #f0f0f0; }
.at-crime-block .at-grid-body .at-cat-sm { color: #ff6b6b; }
.at-crime-block .at-time { color: #888; }
.at-crime-block .at-sec-line {
    background: linear-gradient(90deg, #8B0000, rgba(139,0,0,0.1));
}

/* Video modal */
.at-video-modal { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; }
.at-video-modal[hidden] { display: none !important; }
.at-video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.85); }
.at-video-modal-box {
    position: relative; z-index: 2; width: min(900px, 92vw);
    background: #111; border: 2px solid var(--at-red); border-radius: 6px; padding: 16px;
}
.at-video-modal-close {
    position: absolute; top: -12px; right: -12px; width: 36px; height: 36px;
    background: var(--at-red); color: #fff; border: none; border-radius: 50%;
    font-size: 1rem; cursor: pointer; z-index: 3;
}
.at-video-modal-box h3 {
    font-family: var(--at-font-hindi); color: #fff; font-size: 0.95rem;
    margin-bottom: 12px; padding-right: 24px;
}
.at-video-modal-player { aspect-ratio: 16/9; background: #000; border-radius: 4px; overflow: hidden; }
.at-video-modal-player iframe,
.at-video-modal-player video { width: 100%; height: 100%; border: none; display: block; }
.at-video-modal-box.at-modal-clean {
    padding: 0; border: none; background: #000; width: min(960px, 95vw);
}
.at-video-modal-box.at-modal-clean .at-video-modal-title { display: none; }
.at-video-modal-box.at-modal-clean .at-video-modal-close { top: 8px; right: 8px; }
.at-video-modal-box.at-modal-clean .at-video-modal-player { border-radius: 0; }

/* Legacy dharm (unused) */
.at-section-dharm { display: none; }

/* Main + sidebar */
.at-main-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.at-sidebar {
    position: sticky;
    top: 108px;
    align-self: start;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    scrollbar-width: thin;
}
.at-widget { background: var(--at-white); border: 1px solid var(--at-border); margin-bottom: 14px; overflow: hidden; }
.at-widget-dark { background: #111; border-color: #333; color: #e8e8e8; }
.at-widget-head {
    background: var(--at-black); color: #fff; font-family: var(--at-font-hindi);
    font-weight: 900; font-size: 0.88rem; padding: 10px 14px;
    border-left: 4px solid var(--at-red);
}
.at-video-row {
    display: flex; gap: 10px; padding: 10px 12px; border-bottom: 1px solid var(--at-border);
    transition: background 0.2s;
}
.at-video-row:hover { background: var(--at-red-light); }
.at-video-row img { width: 80px; height: 54px; object-fit: cover; flex-shrink: 0; }
.at-video-row h4 { font-family: var(--at-font-hindi); font-size: 0.8rem; font-weight: 700; line-height: 1.3; }
.at-play { font-size: 0.68rem; color: var(--at-red); font-weight: 700; }
.at-subscribe {
    background: var(--at-red); color: #fff; text-align: center; padding: 24px 16px;
}
.at-sub-icon { font-size: 2rem; margin-bottom: 8px; }
.at-subscribe strong { display: block; font-family: var(--at-font-hindi); font-size: 1rem; margin-bottom: 6px; }
.at-subscribe p { font-size: 0.8rem; opacity: 0.85; margin-bottom: 14px; }
.at-sub-btn {
    display: inline-block; background: #fff; color: var(--at-red);
    padding: 8px 24px; font-weight: 900; font-size: 0.82rem; border-radius: 3px;
}

/* Bottom 2 col */
.at-2col-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 0; }

/* Latest grid */
.at-latest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.at-latest-card {
    display: flex; flex-direction: column; background: var(--at-white);
    border: 1px solid var(--at-border); overflow: hidden; transition: box-shadow 0.2s;
}
.at-latest-card:hover { box-shadow: var(--at-shadow-lg); }
.at-latest-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.at-latest-img { aspect-ratio: 16/10; }
.at-latest-card > div { padding: 12px; }
.at-latest-card h4 { font-family: var(--at-font-hindi); font-size: 0.88rem; font-weight: 700; line-height: 1.35; margin: 6px 0; }

/* Responsive */
@media (max-width: 1200px) {
    .at-hero-3col { grid-template-columns: 1fr; min-height: 0; height: auto; }
    .at-hero-col-left { display: none; }
    .at-hero-col-right.at-hero-col-media { display: none; }
    .at-hero-col-center { min-height: 320px; }
    .at-hero-col-center .at-hero-slider { min-height: 320px; }
    .at-at-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .at-page-grid { grid-template-columns: 1fr; }
    .at-page-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        max-height: none;
        overflow: visible;
    }
}
@media (max-width: 1024px) {
    .at-dharm-main-grid { grid-template-columns: 1fr; }
    .at-dharm-news-col { grid-template-columns: 1fr; }
    .at-state-layout, .at-2col-bottom { grid-template-columns: 1fr; height: auto; }
    .at-state-main, .at-state-grid { height: 220px; }
    .at-news-video-grid { grid-template-columns: 1fr; }
    .at-nv-side-col { flex-direction: column; }
    .at-latest-grid { grid-template-columns: repeat(2, 1fr); }
    .at-4grid, .at-3grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
    .at-hero-3col-wrap { padding: 8px 0; }
    .at-hero-col-center,
    .at-hero-col-center .at-hero-slider {
        min-height: 200px;
        height: 56vw;
        max-height: 300px;
    }
    .at-hero-content { padding: 10px 12px 12px; }
    .at-hero-content h1 {
        font-size: 0.95rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .at-hero-content p { font-size: 0.72rem; line-height: 1.35; }
    .at-hero-badge { font-size: 0.62rem; padding: 3px 8px; }
    .at-hero-nav { width: 28px; height: 44px; font-size: 1.2rem; }
    .at-page-sidebar { grid-template-columns: 1fr; }
    .at-4grid, .at-3grid, .at-latest-grid, .at-state-grid { grid-template-columns: 1fr !important; }
    .news-search { display: none; }
    .at-inner { padding: 0 14px; }
    .news-container { padding: 0 14px; }
}
