/*
Theme Name: Nirnay TV Theme
Theme URI: https://update.nirnaytv.com
Author: Antigravity
Author URI: https://update.nirnaytv.com
Description: Premium Custom Theme for Nirnay TV News Portal. Redesigned for exact UI mockup alignment.
Version: 4.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nirnay
*/

/* -------------------------------------------------------------
 * 1. DESIGN SYSTEM & DESIGN TOKENS
 * ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+Odia:wght@400;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-red: #FF0000;
    --dark-red: #D60000;
    --black: #111111;
    --dark-blue: #08142E;
    --light-bg: #F5F7FA;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-500: #64748B;
    --gray-700: #334155;
    
    --primary-gradient: linear-gradient(135deg, #FF0000, #D60000);
    --blue-gradient: linear-gradient(135deg, #0d1e3d, var(--dark-blue));
    --purple-pink-gradient: linear-gradient(135deg, #7a00df, #e60067, #FF0000); /* Purpe Pink Red */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-odia: 'Noto Sans Odia', sans-serif;
    
    --container-width: 1800px;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.02);
    --shadow-lg: 0 10px 25px -5px rgba(8,20,46,0.1), 0 8px 16px -6px rgba(8,20,46,0.05);
    --shadow-card: 0 12px 30px rgba(8,20,46,0.04);
    --shadow-depth: 0 20px 40px rgba(8,20,46,0.08);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
}

/* -------------------------------------------------------------
 * 2. BASE STYLES & RESET
 * ------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* -------------------------------------------------------------
 * 3. GENERAL LAYOUT UTILITIES
 * ------------------------------------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.grid {
    display: grid;
    gap: 24px;
}

.text-center { text-align: center; }

/* -------------------------------------------------------------
 * 4. HEADER & TOP TICKER
 * ------------------------------------------------------------- */
.top-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
    font-size: 13px;
    color: var(--gray-700);
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 50%;
}

.ticker-title {
    background-color: var(--primary-red);
    color: var(--white);
    font-weight: 900;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.8px;
    animation: pulse 2s infinite;
}

.ticker-content {
    display: inline-block;
    padding-left: 20px;
    animation: ticker-slide 35s linear infinite;
    font-family: var(--font-odia);
    font-weight: bold;
    color: var(--black);
}

@keyframes ticker-slide {
    0% { transform: translate3d(100%, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.live-tv-btn {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255,0,0,0.35);
}

.live-tv-btn::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    display: inline-block;
    animation: flash 0.8s infinite alternate;
}

@keyframes flash {
    from { opacity: 0.1; }
    to { opacity: 1; }
}

.main-header {
    background-color: var(--white);
    padding: 18px 0;
    box-shadow: var(--shadow-sm);
}

.logo img {
    height: 52px;
}

.search-bar {
    position: relative;
    width: 500px; /* Mockup has a large central search bar */
}

.search-bar input {
    width: 100%;
    padding: 14px 60px 14px 24px;
    background-color: var(--gray-100);
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.search-bar input:focus {
    background-color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255,0,0,0.08);
}

.search-bar button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    cursor: pointer;
    color: var(--gray-500);
    font-size: 18px;
}

.social-links a {
    color: var(--gray-500);
    margin-left: 12px;
    font-size: 18px;
    background-color: var(--gray-100);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--white);
    background-color: var(--primary-red);
    transform: translateY(-2px);
}

/* Sidebar and drawer styles removed */

/* -------------------------------------------------------------
 * 6. HERO SECTION / FEATURED STORY SLIDER
 * ------------------------------------------------------------- */
.front-main {
    display: grid;
    grid-template-columns: 7fr 3fr; /* Target 70% / 30% Split Layout */
    gap: 35px;
    margin-top: 30px;
}

.main-content-split {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 650px; /* Target 650px height */
    box-shadow: var(--shadow-lg);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,20,46,0.95) 0%, rgba(8,20,46,0.4) 60%, transparent 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    color: var(--white);
    z-index: 2;
}

.hero-headline {
    font-family: var(--font-odia);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-excerpt {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 90%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--font-odia);
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-controls-next-prev {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-arrow-btn {
    background-color: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.slider-arrow-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

/* -------------------------------------------------------------
 * 7. SIDEBAR WIDGETS
 * ------------------------------------------------------------- */
.widget {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-depth);
    margin-bottom: 35px;
}

.widget-title {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    text-transform: uppercase;
    font-weight: 900;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-red);
}

/* Live TV Card Widget (Black and Red Premium) */
.live-tv-widget {
    background-color: #0b0c10;
    color: var(--white);
    overflow: hidden;
    border: 1px solid rgba(255,0,0,0.15);
}

.live-tv-player {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 16/9;
    background-color: #000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.live-tv-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 8px rgba(255,0,0,0.4);
}

.live-tv-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    animation: flash 0.8s infinite alternate;
}

/* Trending Now List with thumbnails and ranking */
.trending-item {
    display: grid;
    grid-template-columns: 28px 75px 1fr 20px;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}

.trending-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.trending-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-300);
    line-height: 1;
    text-align: center;
}

.trending-item:hover .trending-num {
    color: var(--primary-red);
}

.trending-thumb-mini {
    width: 75px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.trending-meta h4 {
    font-family: var(--font-odia);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.45;
}

.trending-icon-arrow {
    color: var(--gray-300);
    font-size: 14px;
    text-align: center;
}

.trending-item:hover .trending-icon-arrow {
    color: var(--primary-red);
    transform: translate(2px, -2px) scale(1.1);
}

/* Newsletter Widget */
.newsletter-widget {
    background: var(--purple-pink-gradient); /* Target purple pink red gradient */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-widget::after {
    content: '\f1d8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 130px;
    opacity: 0.12;
    transform: rotate(-15deg);
}

.newsletter-widget h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-size: 14px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    backdrop-filter: blur(5px);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.75);
}

.newsletter-form button {
    width: 100%;
    padding: 15px;
    background-color: var(--white);
    color: var(--primary-red);
    font-weight: 900;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    text-transform: uppercase;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Editor's Pick */
.editor-pick-widget {
    position: relative;
    background-color: var(--white);
}

.editor-pick-quote {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
}

.editor-pick-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
    font-size: 18px;
    opacity: 0.6;
}

/* Right Sidebar Live TV Banner */
.sidebar-live-banner {
    background: linear-gradient(135deg, #111111 0%, #3a0000 100%);
    border-radius: var(--radius-lg);
    padding: 22px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    border-left: 4px solid var(--primary-red);
    box-shadow: var(--shadow-md);
}

.sidebar-live-banner h4 {
    font-size: 15px;
    font-weight: 800;
}

.sidebar-live-banner span {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-top: 2px;
}

.sidebar-live-banner .btn-banner-live {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
}

/* Right Sidebar Videos List */
.widget-video-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.widget-video-row:last-child {
    margin-bottom: 0;
}

.widget-video-thumb {
    width: 110px;
    height: 68px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.widget-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-video-thumb::after {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 18px;
}

.widget-video-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background-color: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 2px;
}

.widget-video-meta h4 {
    font-family: var(--font-odia);
    font-size: 12.5px;
    line-height: 1.4;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* -------------------------------------------------------------
 * 8. TOP CATEGORIES (GLASSMORPHISM CARDS)
 * ------------------------------------------------------------- */
.category-icons-grid {
    grid-template-columns: repeat(9, 1fr);
    margin: 45px 0;
}

.category-icon-card {
    background: var(--white); /* White cards as requested */
    border: 1px solid var(--gray-200);
    padding: 24px 12px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255,0,0,0.15);
}

.cat-icon {
    font-size: 40px;
    margin-bottom: 8px;
    display: inline-block;
}

.category-icon-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
}

/* -------------------------------------------------------------
 * 9. POST CARDS & LATEST NEWS
 * ------------------------------------------------------------- */
.section-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 6px solid var(--primary-red);
    padding-left: 18px;
    color: var(--dark-blue);
    font-weight: 950;
    letter-spacing: -0.5px;
}

.latest-news-grid {
    grid-template-columns: repeat(4, 1fr); /* Target exactly 4 cards per row */
    gap: 25px;
    margin-bottom: 50px;
}

.post-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(8,20,46,0.03);
}

.post-card:hover {
    box-shadow: var(--shadow-depth);
    transform: translateY(-6px);
    border-color: rgba(255,0,0,0.1);
}

.post-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-thumb img {
    transform: scale(1.08);
}

.post-card-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.post-card-cat {
    color: var(--primary-red);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.post-card-title {
    font-family: var(--font-odia);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 14px;
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-100);
    padding-top: 12px;
    margin-top: auto;
}

.post-card-meta {
    font-size: 11px;
    color: var(--gray-500);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.post-card-actions {
    display: flex;
    gap: 12px;
    color: var(--gray-500);
    font-size: 14px;
}

.post-card-actions i:hover {
    color: var(--primary-red);
    cursor: pointer;
}

/* -------------------------------------------------------------
 * 10. VIDEOS SLIDER SECTION
 * ------------------------------------------------------------- */
.video-section {
    background: linear-gradient(135deg, #060e22 0%, #0c1730 100%);
    padding: 60px 0;
    margin-bottom: 50px;
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.video-section .section-title {
    color: var(--white);
    border-left-color: var(--primary-red);
    padding-left: 20px;
}

.video-grid {
    grid-template-columns: repeat(5, 1fr);
}

.video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    background-color: #000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.video-card img {
    opacity: 0.65;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.video-card:hover img {
    opacity: 0.85;
    transform: scale(1.05);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2) 60%, transparent);
}

.play-icon {
    align-self: center;
    background-color: rgba(255,255,255,0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 2px solid #fff;
    margin-top: 15px;
    transition: all 0.3s;
}

.video-card:hover .play-icon {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.15);
}

.video-card-title {
    font-family: var(--font-odia);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

/* -------------------------------------------------------------
 * 11. DYNAMIC LIVE UPDATES STRIP (VIEWPORT-FIT MARQUEE)
 * ------------------------------------------------------------- */
.live-updates-strip {
    background: #000000;
    color: var(--white);
    padding: 12px 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden; /* Prevent horizontal scroll! */
    max-width: 100%;
    box-sizing: border-box;
}

.live-updates-badge {
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(255,0,0,0.3);
    flex-shrink: 0; /* Keep it fixed */
}

.live-updates-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    animation: flash 0.8s infinite alternate;
}

.marquee-container {
    overflow: hidden;
    flex-grow: 1;
    position: relative;
    height: 22px;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    will-change: transform;
    animation: marquee-anim 25s linear infinite;
    font-family: var(--font-odia);
    font-weight: bold;
    font-size: 14px;
    color: var(--white);
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee-anim {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-33.33%, 0, 0); } /* Loop transition */
}

/* Odisha Special Layout */
.odisha-special-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.odisha-main-post {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(8,20,46,0.02);
}

.odisha-main-post:hover {
    box-shadow: var(--shadow-depth);
}

.odisha-main-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.odisha-main-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.odisha-main-post:hover .odisha-main-thumb img {
    transform: scale(1.04);
}

.odisha-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.odisha-list-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(8,20,46,0.02);
}

.odisha-list-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(255,0,0,0.1);
}

.odisha-list-thumb {
    width: 120px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.odisha-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.odisha-list-meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.odisha-list-meta h4 {
    font-family: var(--font-odia);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

/* Most Read list widget styling */
.most-read-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.most-read-card {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
    border-left: 4px solid transparent;
}

.most-read-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-left-color: var(--primary-red);
}

.most-read-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    width: 35px;
    text-align: center;
    flex-shrink: 0;
}

.most-read-meta h4 {
    font-family: var(--font-odia);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.45;
}

/* Category Double Column Row (Sports & Tech Updates) */
.category-double-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 50px;
}

.category-updates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Photo Gallery Grid */
.photo-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-card {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    z-index: 2;
}

.gallery-overlay h3 {
    font-family: var(--font-odia);
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.gallery-icon-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    backdrop-filter: blur(5px);
}

/* -------------------------------------------------------------
 * 12. FOOTER (DARK BLUE GRADIENT)
 * ------------------------------------------------------------- */
.site-footer {
    background: linear-gradient(180deg, #08142E 0%, #030814 100%);
    color: var(--white);
    padding: 80px 0 40px;
    font-size: 14px;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1.2fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-widget h3 {
    margin-bottom: 25px;
    font-size: 16px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 12px;
}

.footer-widget a {
    color: rgba(255,255,255,0.7);
}

.footer-widget a:hover {
    color: var(--primary-red);
    padding-left: 4px;
}

.footer-social a {
    background-color: rgba(255,255,255,0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--gray-500);
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* -------------------------------------------------------------
 * 13. RESPONSIVE DESIGN & MOBILE BAR
 * ------------------------------------------------------------- */
@media (max-width: 1600px) {
    .category-icons-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 1400px) {
    .latest-news-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 cards on tablet/small screen */
    }
    .category-icons-grid {
        grid-template-columns: repeat(7, 1fr);
    }
    .photo-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .app-layout {
        grid-template-columns: 1fr;
    }
    .front-main {
        grid-template-columns: 1fr;
    }
    .main-content-split {
        grid-template-columns: 1fr;
    }
    .latest-news-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards on tablet */
    }
    .category-icons-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .odisha-special-split {
        grid-template-columns: 1fr;
    }
    .category-double-split {
        grid-template-columns: 1fr;
    }
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ticker-wrap {
        width: 100%;
    }
    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }
    .search-bar {
        width: 100%;
    }
    .hero-slider {
        height: 380px;
    }
    .hero-content {
        padding: 30px;
    }
    .hero-headline {
        font-size: 24px;
    }
    .category-icons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .latest-news-grid {
        grid-template-columns: 1fr; /* 1 card on mobile */
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-bottom a {
        margin: 0 10px;
    }
    
    /* Mobile sticky bottom navigation */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 999;
        justify-content: space-around;
        padding: 10px 0;
        border-top: 1px solid var(--gray-200);
    }
    
    .mobile-bottom-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 11px;
        color: var(--gray-700);
        font-weight: 600;
    }
    
    .mobile-bottom-item.active {
        color: var(--primary-red);
    }
    
    .mobile-bottom-item i {
        font-size: 22px;
        margin-bottom: 3px;
    }
    
    body {
        padding-bottom: 70px;
    }
}

.mobile-bottom-nav {
    display: none;
}

/* 14. DEDICATED LIVE TV PLAYER & ANIMATED INDICATORS */
.live-tv-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #ffffff;
    animation: liveDotPulse 1.2s infinite alternate;
}
@keyframes liveDotPulse {
    from { opacity: 0.35; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1.15); }
}

/* Play pulse button overlay on homepage poster */
.play-btn-pulse {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(255,0,0,0.6);
    animation: playPulseBtn 2s infinite;
}
@keyframes playPulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Plyr Custom Theme Overrides to Match Brand colors (Red) */
.plyr--video {
    --plyr-color-main: var(--primary-red) !important;
    border-radius: var(--radius-lg);
}

/* -------------------------------------------------------------
 * 15. SVG ICON STYLING & NAVIGATION ALIGNMENT
 * ------------------------------------------------------------- */
.drawer-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.drawer-menu li a .sidebar-icon {
    width: 22px;
    height: 22px;
    stroke: #FFFFFF !important; /* default color */
    stroke-width: 2px;
    fill: none;
    transition: stroke 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.drawer-menu li a:hover .sidebar-icon {
    stroke: #FF0000 !important; /* hover color */
}

.drawer-menu li.active a .sidebar-icon {
    stroke: #FFFFFF !important; /* active color is white icon */
}

/* Category Grid SVG Icons */
.cat-grid-icon {
    width: 32px;
    height: 32px;
    stroke: var(--primary-red);
    stroke-width: 2px;
    fill: none;
    margin-bottom: 12px;
    transition: stroke 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.category-icon-card:hover .cat-grid-icon {
    stroke: var(--dark-red);
    transform: scale(1.1);
}

/* Perfect alignment and layout rules for inline SVGs / Lucide icons in widgets/buttons */
.live-tv-btn svg,
.ticker-title svg,
.widget-title svg,
.hamburger-menu-btn svg,
.drawer-close-btn svg,
.trending-icon-arrow svg,
.mobile-bottom-item svg,
.search-bar button svg,
.social-links a svg,
.footer-social a svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Enforcing mobile sticky bottom bar icon specs */
.mobile-bottom-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
    margin-bottom: 3px;
}

/* Sticky bottom active states */
.mobile-bottom-item.active svg {
    stroke: var(--primary-red);
}

.search-bar button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.social-links a,
.footer-social a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* -------------------------------------------------------------
 * 16. SECTION SPACING SYSTEM & RESPONSIVE LAYOUT OVERHAUL
 * ------------------------------------------------------------- */
.home-section {
    margin-bottom: 80px !important;
}

.sub-section-block {
    margin-bottom: 40px !important;
}

/* Card System normalization */
.post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(8,20,46,0.03);
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-depth);
    border-color: rgba(255,0,0,0.1);
}

.post-card .post-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.post-card .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-thumb img {
    transform: scale(1.06);
}

.post-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* Grid layout rules */
.grid-4-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Responsive Grids */
@media (max-width: 1200px) {
    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-4-cols {
        grid-template-columns: 1fr;
    }
    .grid-3-cols {
        grid-template-columns: 1fr;
    }
    .grid-2-cols {
        grid-template-columns: 1fr;
    }
    .home-section {
        margin-bottom: 50px !important;
    }
}

/* Dark Tech Section styling */
.tech-dark-section {
    background-color: #060e22;
    color: #ffffff;
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.05);
}

.tech-dark-section .section-title {
    color: #ffffff;
    border-left-color: var(--primary-red);
}

.tech-dark-section .post-card {
    background-color: #0e1626;
    border: 1px solid rgba(255,255,255,0.06);
    color: #ffffff;
}

.tech-dark-section .post-card-title a {
    color: #ffffff;
}

.tech-dark-section .post-card-title a:hover {
    color: var(--primary-red);
}

.tech-dark-section .post-card-meta,
.tech-dark-section .post-card-footer {
    border-top-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

/* Photo Gallery Zoom Effect */
.gallery-card img {
    transition: transform 0.5s ease-in-out !important;
}

.gallery-card:hover img {
    transform: scale(1.12) !important;
}

/* Market indices widget */
.market-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.market-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all 0.25s;
}

.market-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(255,0,0,0.1);
}

.market-label {
    font-weight: 800;
    font-size: 13px;
    color: var(--dark-blue);
    font-family: var(--font-odia);
}

.market-value {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--black);
}

.market-change {
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.market-change.up {
    color: #00b0ff;
}

.market-change.down {
    color: var(--primary-red);
}

/* Live TV Promotion Banner styling */
.live-promo-banner {
    background: linear-gradient(135deg, #0a142c 0%, #030814 100%);
    border-radius: var(--radius-xl);
    padding: 50px;
    color: #fff;
    border: 1px solid rgba(255,0,0,0.1);
    box-shadow: var(--shadow-lg);
}

.live-promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 992px) {
    .live-promo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* View All button style */
.btn-view-all-container {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: var(--dark-blue);
    color: #fff;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13.5px;
    transition: all 0.3s;
    font-family: var(--font-odia);
    box-shadow: var(--shadow-sm);
}

.btn-view-all:hover {
    background-color: var(--primary-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}

/* Numbered most read list */
.most-read-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

@media (max-width: 768px) {
    .most-read-row {
        grid-template-columns: 1fr;
    }
}

.most-read-item-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    font-family: var(--font-heading);
}

/* Article Hero styling */
.article-hero {
    background: linear-gradient(135deg, #0e1626 0%, #08142E 100%);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    color: #fff;
    box-shadow: var(--shadow-md);
}

/* Category Hero styling */
.category-hero {
    background: linear-gradient(135deg, #0e1626 0%, #08142E 100%);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    color: #fff;
    border-left: 6px solid var(--primary-red);
    box-shadow: var(--shadow-sm);
}

/* Split Layouts for Homepage Sections */
.video-hub-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
}

.sports-hub-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 30px;
}

.business-hub-split {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.1fr;
    gap: 30px;
}

@media (max-width: 1200px) {
    .video-hub-split {
        grid-template-columns: 1fr;
    }
    .sports-hub-split {
        grid-template-columns: 1.2fr 1fr;
    }
    /* Hide trending column on small tablet, or stack */
    .sports-hub-split > div:last-child {
        grid-column: span 2;
    }
    .business-hub-split {
        grid-template-columns: 1fr 1fr;
    }
    .business-hub-split > div:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .video-hub-split {
        grid-template-columns: 1fr !important;
    }
    .sports-hub-split {
        grid-template-columns: 1fr !important;
    }
    .sports-hub-split > div:last-child {
        grid-column: span 1 !important;
    }
    .business-hub-split {
        grid-template-columns: 1fr !important;
    }
    .business-hub-split > div:last-child {
        grid-column: span 1 !important;
    }
}

/* Player Spinner Keyframes */
@keyframes playerSpinnerSpin {
    to { transform: rotate(360deg); }
}

/* -------------------------------------------------------------
 * 17. CATEGORY PAGE NEW PORTAL STYLING
 * ------------------------------------------------------------- */
.category-page-container {
    padding-top: 30px;
}

/* Category Hero */
.category-hero-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-lg);
    padding: 35px;
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.category-hero-text {
    max-width: 60%;
}

.category-hero-breadcrumb {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 12px;
    font-family: var(--font-odia);
    font-weight: 700;
}

.category-hero-breadcrumb a:hover {
    color: var(--primary-red);
}

.category-hero-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-hero-desc {
    font-size: 14.5px;
    color: var(--gray-700);
    line-height: 1.6;
    font-family: var(--font-odia);
}

.category-hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 2;
}

.category-hero-map-container {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.category-hero-map-container svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--dark-blue);
    stroke-width: 1.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.category-share-btn {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--dark-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    box-shadow: var(--shadow-sm);
}

.category-share-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-1px);
}

.category-share-btn svg {
    width: 14px;
    height: 14px;
}

/* Category Filter Tabs */
.category-tabs-container {
    width: 100%;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 8px;
}

.category-tabs-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.cat-tab-btn {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    padding: 10px 22px;
    border-radius: 6px;
    font-family: var(--font-odia);
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s;
}

.cat-tab-btn:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--dark-blue);
}

.cat-tab-btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255,0,0,0.25);
}

/* Main Category Grid Split Layout */
.category-main-layout {
    display: grid;
    grid-template-columns: 7.2fr 2.8fr;
    gap: 35px;
    align-items: start;
}

.category-content-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.category-sidebar-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 100px;
}

/* Top Stories Section */
.top-stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.top-stories-header h2 {
    font-family: var(--font-odia);
    font-size: 20px;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.top-stories-header h2::before {
    content: '';
    width: 4px;
    height: 18px;
    background-color: var(--primary-red);
    display: inline-block;
    border-radius: 2px;
}

.top-stories-view-all {
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 800;
}

.top-stories-view-all:hover {
    color: var(--dark-red);
}

.top-stories-grid-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

/* Left Featured Card */
.category-featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(8,20,46,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-depth);
}

.category-featured-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.category-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-featured-card:hover .category-featured-thumb img {
    transform: scale(1.03);
}

.category-featured-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-featured-content h3 {
    font-family: var(--font-odia);
    font-size: 19px;
    font-weight: bold;
    line-height: 1.45;
    margin-top: 10px;
    margin-bottom: 12px;
}

.category-featured-desc {
    font-family: var(--font-odia);
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Right Top stories vertical list */
.top-stories-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.top-story-list-card {
    display: flex;
    gap: 16px;
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8,20,46,0.02);
    align-items: center;
    transition: all 0.3s;
}

.top-story-list-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(255,0,0,0.1);
}

.top-story-list-thumb {
    width: 100px;
    height: 68px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.top-story-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-story-list-meta {
    flex-grow: 1;
}

.top-story-list-meta h4 {
    font-family: var(--font-odia);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top-story-list-meta span {
    font-size: 11px;
    color: var(--gray-500);
}

/* Sidebar Widgets */
.sidebar-trending-item {
    display: grid;
    grid-template-columns: 24px 60px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-trending-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-trending-num {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-red);
    text-align: center;
}

.sidebar-trending-thumb {
    width: 60px;
    height: 42px;
    border-radius: 4px;
    object-fit: cover;
}

.sidebar-trending-meta h4 {
    font-family: var(--font-odia);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

/* District buttons grid */
.district-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.district-btn {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--dark-blue);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-odia);
    font-size: 12.5px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
}

.district-btn:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-300);
    color: var(--primary-red);
}

.district-btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

/* Numbered Most Read Section */
.most-read-section {
    width: 100%;
}

.most-read-grid-ranking {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.most-read-rank-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8,20,46,0.02);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
    height: 100%;
}

.most-read-rank-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(255,0,0,0.1);
}

.most-read-rank-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: rgba(255,0,0,0.15);
    line-height: 1;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1;
    transition: color 0.3s;
}

.most-read-rank-card:hover .most-read-rank-number {
    color: rgba(255,0,0,0.8);
}

.most-read-rank-content {
    position: relative;
    z-index: 2;
    padding-top: 25px;
}

.most-read-rank-content h4 {
    font-family: var(--font-odia);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
}

/* Videos Horizontal list */
.category-videos-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 15px;
    scrollbar-width: auto;
}

.category-video-item-card {
    flex: 0 0 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8,20,46,0.02);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.category-video-item-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.category-video-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.category-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: background 0.3s;
}

.category-video-item-card:hover .category-video-play-overlay {
    background: rgba(0,0,0,0.45);
}

.category-video-play-circle {
    width: 44px;
    height: 44px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.category-video-item-card:hover .category-video-play-circle {
    transform: scale(1.1);
}

.category-video-play-circle svg {
    fill: currentColor;
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.category-video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
}

.category-video-info {
    padding: 14px;
}

.category-video-info h4 {
    font-family: var(--font-odia);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Photo Gallery styling */
.gallery-count-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 9.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

/* AJAX loader spinner */
.ajax-loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Responsive category styling overrides */
@media (max-width: 1200px) {
    .category-main-layout {
        grid-template-columns: 1fr;
    }
    .category-sidebar-flow {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .category-hero-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
    }
    .category-hero-text {
        max-width: 100%;
    }
    .category-hero-right {
        align-items: flex-start;
        width: 100%;
    }
    .category-hero-map-container {
        display: none;
    }
    .top-stories-grid-split {
        grid-template-columns: 1fr;
    }
    .most-read-grid-ranking {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .most-read-grid-ranking {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------
 * 15. DESKTOP CATEGORY NAVIGATION & HEADER RESTRUCTURE
 * ------------------------------------------------------------- */

/* Row 1 Top Bar Restyle */
.top-bar {
    border-bottom: 1px solid var(--gray-200);
}
.top-bar .social-links a {
    color: var(--gray-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--gray-100);
    transition: all 0.2s ease;
}
.top-bar .social-links a:hover {
    color: #fff;
    background-color: var(--primary-red);
}

/* Row 2 Live TV CTA Button styling */
.live-tv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

.live-tv-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.35);
}

.live-dot-pulse {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.live-dot-pulse::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: liveDotPulse 1.5s infinite;
    box-sizing: border-box;
}

/* Row 3 Sticky Category Navigation Bar */
.category-nav-bar {
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    height: 52px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Push navigation bar down if WordPress Admin Bar is showing */
body.admin-bar .category-nav-bar {
    top: 32px;
}

.category-menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    gap: 10px; /* Spacing between items: 8px-12px */
}

.category-menu-list::-webkit-scrollbar {
    display: none;
}

.category-menu-list li {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.category-menu-list li a, .more-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px; /* Item padding: 16px-20px horizontal */
    font-size: 14.5px;
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-odia);
    white-space: nowrap;
    border-radius: 10px; /* Rounded active/hover: 10px */
    border: none;
    background: none;
    cursor: pointer;
}

/* Active Category item style: red background, white text, bold */
.category-menu-list li.active a {
    background-color: var(--primary-red) !important;
    color: #ffffff !important;
    font-weight: 800;
}

/* Hover effects: smooth transition, red text, light background */
.category-menu-list li a:hover, .more-btn:hover {
    color: var(--primary-red) !important;
    background-color: rgba(229, 62, 62, 0.08) !important; /* Premium light red hover background */
}

/* More Dropdown menu styling */
.category-menu-more {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.category-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    list-style: none;
    padding: 8px 0;
    margin: 4px 0 0 0;
    min-width: 190px;
    display: none;
    z-index: 100;
}

.category-menu-dropdown li {
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
}

.category-menu-dropdown li a {
    display: block;
    padding: 8px 16px;
    font-size: 13.5px;
    color: var(--dark-blue);
    text-align: left;
    width: 100%;
    border-radius: 6px;
}

.category-menu-dropdown li.active a {
    background-color: var(--primary-red);
    color: #ffffff !important;
}

.category-menu-more:hover .category-menu-dropdown {
    display: block;
}

/* Live TV Pill Button styling */
.live-tv-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-red);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    font-family: var(--font-heading);
    box-shadow: 0 3px 8px rgba(255, 0, 0, 0.2);
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.live-tv-pill-btn:hover {
    background-color: #cc0000;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(255, 0, 0, 0.3);
}

.live-tv-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.live-tv-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    animation: liveDotPulse 1.5s infinite;
    box-sizing: border-box;
}


/* Row 4: Breaking News Ticker Row */
.breaking-news-ticker-row {
    background-color: var(--dark-blue);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breaking-news-ticker-row .ticker-label {
    flex-shrink: 0;
    background-color: var(--primary-red);
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-family: var(--font-odia);
    font-weight: 800;
    font-size: 13px;
    gap: 6px;
    position: relative;
    z-index: 2;
    box-shadow: 4px 0 10px rgba(0,0,0,0.15);
}

.breaking-news-ticker-row .ticker-marquee-container {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.breaking-news-ticker-row .ticker-marquee-content {
    display: inline-flex;
    white-space: nowrap;
    padding-left: 20px;
    animation: headerTickerMarquee 25s linear infinite;
}

.breaking-news-ticker-row .ticker-marquee-content:hover {
    animation-play-state: paused;
}

.breaking-news-ticker-row .ticker-marquee-content a {
    color: rgba(255,255,255,0.9);
    font-family: var(--font-odia);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 10px;
}

.breaking-news-ticker-row .ticker-marquee-content a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.breaking-news-ticker-row .ticker-time {
    color: var(--primary-red);
    font-weight: 800;
    margin-right: 5px;
    font-size: 11px;
}

.breaking-news-ticker-row .ticker-separator {
    color: rgba(255,255,255,0.25);
    margin: 0 15px;
    font-size: 14px;
}

@keyframes headerTickerMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

@keyframes liveDotPulse {
    0% { transform: scale(0.9); opacity: 0.9; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* RESPONSIVE NAV BAR BEHAVIOR */
@media screen and (max-width: 1023px) {
    /* Mobile & Tablet compact category bar with horizontal scroll */
    .category-nav-bar {
        height: 44px;
        display: flex !important;
    }
    body.admin-bar .category-nav-bar {
        top: 32px;
    }
    @media screen and (max-width: 782px) {
        body.admin-bar .category-nav-bar {
            top: 46px;
        }
    }
    @media screen and (max-width: 767px) {
        body.admin-bar .category-nav-bar {
            top: 0;
        }
    }
    .category-menu-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 2px;
        padding: 0 10px;
        scrollbar-width: none;
    }
    .category-menu-list::-webkit-scrollbar {
        display: none;
    }
    .category-menu-list li a {
        padding: 0 12px;
        line-height: 44px;
        font-size: 12.5px;
    }
    .category-menu-more {
        display: none !important;
    }
}

@media screen and (min-width: 1024px) {
    .category-nav-bar {
        display: flex !important;
    }
}


/* =============================================================
 * Nirnay TV Custom Overhaul Styles
 * ============================================================= */
:root {
    --primary-red: #ff1a1a;
    --dark-blue: #07142c;
    --light-bg: #f6f8fb;
    --gray-200: #e8ecf3;
    --radius-lg: 16px; /* Cards / Widgets border-radius */
    --radius-md: 12px; /* Buttons / Inputs border-radius */
    --shadow-card: 0 8px 30px rgba(7, 20, 44, 0.05); /* Soft modern shadows */
    --shadow-lg: 0 10px 30px rgba(7, 20, 44, 0.08);
}

/* Ensure body has correct padding-bottom for sticky mobile footer */
@media screen and (max-width: 767px) {
    body {
        padding-bottom: 80px !important;
    }
}

/* Mobile Fullscreen Menu */
.mobile-fullscreen-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    z-index: 10000;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-fullscreen-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px 0 40px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu-list li a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15.5px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-odia);
    gap: 12px;
    transition: all 0.2s;
}

.mobile-menu-list li.active a,
.mobile-menu-list li a:hover {
    color: var(--white);
    background-color: rgba(255, 26, 26, 0.1);
    border-left: 4px solid var(--primary-red);
    padding-left: 20px;
}

.mobile-menu-list li a svg {
    stroke: currentColor;
    width: 18px;
    height: 18px;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 20, 44, 0.96);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.mobile-search-overlay.active {
    top: 0;
}

.search-overlay-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.search-overlay-close svg {
    width: 28px;
    height: 28px;
}

.search-overlay-form {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #fff;
}

.search-overlay-form input[type="search"] {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 12px 50px 12px 0;
    width: 100%;
    outline: none;
    font-family: var(--font-odia);
}

.search-overlay-form button {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.search-overlay-form button svg {
    width: 24px;
    height: 24px;
}

/* Mobile Live TV Sticky Mini Player */
.live-tv-player-container.sticky-mini-player {
    position: fixed;
    bottom: 80px; /* Stands right above the mobile sticky bottom nav bar */
    right: 15px;
    width: 180px;
    height: 101px; /* 16:9 aspect ratio */
    z-index: 998;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-red);
    animation: slideInRight 0.3s ease-out;
}


/* =============================================================
 * Nirnay TV Custom Overhaul Styles
 * ============================================================= */
:root {
    --primary-red: #ff1a1a;
    --dark-blue: #07142c;
    --light-bg: #f6f8fb;
    --gray-200: #e8ecf3;
    --radius-lg: 16px; /* Cards / Widgets border-radius */
    --radius-md: 12px; /* Buttons / Inputs border-radius */
    --shadow-card: 0 8px 30px rgba(7, 20, 44, 0.05); /* Soft modern shadows */
    --shadow-lg: 0 10px 30px rgba(7, 20, 44, 0.08);
}

/* Ensure body has correct padding-bottom for sticky mobile footer */
@media screen and (max-width: 767px) {
    body {
        padding-bottom: 80px !important;
    }
}

/* Mobile Fullscreen Menu */
.mobile-fullscreen-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    z-index: 10000;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-fullscreen-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px 0 40px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-menu-list li a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15.5px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-odia);
    gap: 12px;
    transition: all 0.2s;
}

.mobile-menu-list li.active a,
.mobile-menu-list li a:hover {
    color: var(--white);
    background-color: rgba(255, 26, 26, 0.1);
    border-left: 4px solid var(--primary-red);
    padding-left: 20px;
}

.mobile-menu-list li a svg {
    stroke: currentColor;
    width: 18px;
    height: 18px;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 20, 44, 0.96);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.mobile-search-overlay.active {
    top: 0;
}

.search-overlay-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.search-overlay-close svg {
    width: 28px;
    height: 28px;
}

.search-overlay-form {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #fff;
}

.search-overlay-form input[type="search"] {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 12px 50px 12px 0;
    width: 100%;
    outline: none;
    font-family: var(--font-odia);
}

.search-overlay-form button {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.search-overlay-form button svg {
    width: 24px;
    height: 24px;
}

/* Mobile Live TV Sticky Mini Player */
.live-tv-player-container.sticky-mini-player {
    position: fixed;
    bottom: 80px; /* Stands right above the mobile sticky bottom nav bar */
    right: 15px;
    width: 180px;
    height: 101px; /* 16:9 aspect ratio */
    z-index: 998;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-red);
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Ensure player wrapper maintains layout space when mini player is floating */
.live-tv-player-wrapper {
    position: relative;
    min-height: 250px; /* Prevent total collapse */
}

/* -------------------------------------------------------------
 * 16. ARGUS STYLE WIDGETS, DARK THEME & GLASSMORPHIC SEARCH
 * ------------------------------------------------------------- */

/* Dark Mode Variables */
body.dark-theme {
    --white: #0c1524;
    --gray-50: #0a0f1d;
    --gray-100: #141c30;
    --gray-200: #1a2642;
    --gray-300: #2d3b5d;
    --gray-400: #4a5c88;
    --gray-500: #7b8ea8;
    --gray-600: #9cb1cf;
    --gray-700: #c2d6f0;
    --gray-800: #e2eeff;
    --gray-900: #f5f9ff;
    --black: #ffffff;
    --dark-blue: #ffffff;
    --body-bg: #070c16;
}

body.dark-theme, body.dark-theme #category-nav-bar, body.dark-theme .top-bar, body.dark-theme .main-header {
    background-color: var(--body-bg) !important;
    color: var(--gray-800) !important;
}

body.dark-theme a {
    color: var(--gray-700);
}
body.dark-theme a:hover {
    color: var(--primary-red) !important;
}

body.dark-theme .category-icon-card, 
body.dark-theme .trending-item, 
body.dark-theme .premium-divider-card, 
body.dark-theme .post-card, 
body.dark-theme .trending-list-card,
body.dark-theme .admin-overhaul-card {
    background-color: var(--gray-100) !important;
    border-color: var(--gray-200) !important;
    color: var(--gray-800) !important;
}

/* Premium Divider Card */
.premium-divider-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-divider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
}

.premium-divider-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.premium-divider-card-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-divider-accent {
    width: 4px;
    height: 24px;
    background: var(--primary-red);
    border-radius: 2px;
}

.premium-divider-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0;
    font-family: var(--font-odia);
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-divider-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.premium-divider-card-right {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 26, 26, 0.05);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 26, 26, 0.15);
}

.premium-divider-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: inline-block;
    animation: premium-pulse 1.5s infinite;
}

.premium-divider-live-text {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

@keyframes premium-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(255, 26, 26, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 26, 26, 0);
    }
}

/* Argus Style Top Bar Controls */
.top-bar {
    padding: 8px 0;
}

.argus-controls-left, .argus-controls-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.argus-header-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 26, 26, 0.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    background: transparent;
    height: 32px;
    box-sizing: border-box;
    font-family: var(--font-heading), var(--font-odia);
}

.videos-pill {
    color: var(--primary-red) !important;
    background: rgba(255, 26, 26, 0.04);
}

.videos-pill:hover {
    background: rgba(255, 26, 26, 0.1);
    transform: translateY(-1px);
}

.pulsing-red-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-red);
    border-radius: 50%;
    margin-left: 8px;
    display: inline-block;
    animation: red-dot-pulse 1s infinite alternate;
}

@keyframes red-dot-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; }
}

.conclaves-dropdown {
    position: relative;
}

.conclaves-pill {
    color: var(--primary-red) !important;
    background: rgba(255, 26, 26, 0.04);
}

.conclaves-pill:hover {
    background: rgba(255, 26, 26, 0.1);
}

.dropdown-menu-content {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    z-index: 1000;
    overflow: hidden;
    animation: fadeInSlide 0.25s ease-out;
}

.conclaves-dropdown:hover .dropdown-menu-content {
    display: block;
}

.dropdown-menu-content a {
    color: var(--gray-700) !important;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.dropdown-menu-content a:last-child {
    border-bottom: none;
}

.dropdown-menu-content a:hover {
    background-color: var(--gray-50);
    color: var(--primary-red) !important;
    padding-left: 20px;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-pill {
    color: var(--primary-red) !important;
    border-color: var(--primary-red);
    background: transparent;
}

.lang-pill:hover {
    background: var(--primary-red);
    color: var(--white) !important;
}

.argus-header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--gray-100);
    color: var(--gray-700);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
}

.argus-header-icon-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.08);
}

/* Weather Capsule styling */
.weather-capsule {
    background: linear-gradient(135deg, #fffdef 0%, #f0fcff 100%);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 50px;
    padding: 5px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #4a5568;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.04);
    height: 32px;
    box-sizing: border-box;
}

body.dark-theme .weather-capsule {
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
    border: 1px solid rgba(255, 140, 0, 0.15);
    color: var(--gray-300);
}

/* Fullscreen Glassmorphic Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(6, 11, 23, 0.72) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

.mobile-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-close {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.search-overlay-close:hover {
    background: #e60000 !important;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 26, 26, 0.5);
}

.search-overlay-close svg {
    width: 15px;
    height: 15px;
    stroke-width: 3px;
}

.search-overlay-form {
    width: 100%;
    max-width: 720px;
    display: flex;
    align-items: center;
    background: #ffffff !important;
    border-radius: 100px !important;
    padding: 10px 10px 10px 28px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-search-overlay.active .search-overlay-form {
    transform: scale(1);
}

.search-overlay-form .search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
}

.search-overlay-form .search-icon-left {
    color: var(--primary-red);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.search-overlay-form input[type="search"] {
    background: transparent !important;
    border: none !important;
    color: #1a202c !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    width: 100% !important;
    outline: none !important;
    padding: 8px 0 !important;
    font-family: var(--font-odia), var(--font-heading) !important;
}

.search-overlay-form input[type="search"]::placeholder {
    color: #a0aec0 !important;
}

.search-overlay-form button[type="submit"] {
    position: static !important;
    background: var(--primary-gradient) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.3) !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0;
}

.search-overlay-form button[type="submit"]:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 26, 26, 0.4) !important;
}

.search-overlay-form button[type="submit"] svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
}

/* Sidebar Live TV Link Button */
.sidebar-live-tv-link-btn {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--primary-red) !important;
    background: #ffffff !important;
    padding: 10px !important;
    border-radius: var(--radius-md) !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(255, 26, 26, 0.05);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100%;
    box-sizing: border-box;
}

.sidebar-live-tv-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 26, 26, 0.16);
    background: #fffcfc !important;
}

body.dark-theme .sidebar-live-tv-link-btn {
    background: #141c30 !important;
    border-color: rgba(255, 26, 26, 0.4) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.dark-theme .sidebar-live-tv-link-btn:hover {
    background: #1a2642 !important;
}

body.dark-theme .sidebar-live-tv-link-btn span {
    color: var(--white) !important;
}

.live-tv-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: inline-block;
    animation: live-dot-pulse-sidebar 1.2s infinite alternate;
}

@keyframes live-dot-pulse-sidebar {
    0% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.4); }
    100% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 0 6px rgba(255, 26, 26, 0); }
}

/* -------------------------------------------------------------
 * 17. ARGUS-STYLE HOMEPAGE HERO GRID
 * ------------------------------------------------------------- */
.argus-hero-layout {
    display: grid;
    grid-template-columns: 1.55fr 1.6fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 1100px) {
    .argus-hero-layout {
        grid-template-columns: 1.6fr 1fr;
    }
    .argus-hero-sidebar {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .argus-hero-layout {
        grid-template-columns: 1fr;
    }
    .argus-hero-sidebar {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}

/* Column 1: Featured Card */
.argus-featured-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.argus-featured-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.argus-featured-img-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.argus-featured-img-box {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.argus-featured-card:hover .argus-featured-img-box {
    transform: scale(1.05);
}

.argus-featured-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.argus-post-category-tag-row {
    margin-bottom: 12px;
}

.argus-post-category-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-red) !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: color 0.2s;
}

.argus-post-category-tag:hover {
    color: var(--dark-blue) !important;
}

.argus-featured-title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--dark-blue);
    margin: 0 0 12px;
    font-family: var(--font-odia), var(--font-heading);
}

.argus-featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.argus-featured-title a:hover {
    color: var(--primary-red);
}

.argus-featured-excerpt {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0 0 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.argus-featured-location {
    font-weight: 800;
    color: var(--gray-800);
    font-family: var(--font-odia);
}

.argus-post-meta {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
    margin-top: auto;
}

.argus-post-meta span {
    display: inline-flex;
    align-items: center;
}

/* Column 2: 2x2 Grid of stories */
.argus-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

@media (max-width: 580px) {
    .argus-hero-grid {
        grid-template-columns: 1fr;
    }
}

.argus-grid-post-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.argus-grid-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.argus-grid-img-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.argus-grid-img-box {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.argus-grid-post-card:hover .argus-grid-img-box {
    transform: scale(1.05);
}

.argus-grid-post-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.argus-grid-post-title {
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.45;
    color: var(--dark-blue);
    margin: 0 0 10px;
    font-family: var(--font-odia), var(--font-heading);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px; /* Safe fix to align titles */
}

.argus-grid-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.argus-grid-post-title a:hover {
    color: var(--primary-red);
}

.argus-grid-post-info .argus-post-meta {
    border-top: none;
    padding-top: 0;
    margin-top: auto;
}

/* ==========================================================================
   ARGUS NEWS-STYLE CATEGORY SECTION OVERHAUL STYLES
   ========================================================================== */

/* Section Headers */
.argus-section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 12px;
    margin-bottom: 24px;
    margin-top: 40px;
}

.argus-section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading), sans-serif;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.argus-section-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 22px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.argus-section-title-arrow {
    color: var(--primary-red);
    font-weight: 900;
    margin-left: 2px;
}

.argus-section-view-all {
    color: var(--primary-red);
    font-size: 12.5px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s ease;
}

.argus-section-view-all:hover {
    transform: translateX(3px);
    text-decoration: none;
}

/* Split Layout grids */
.argus-split-40-60 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
    margin-bottom: 40px;
}

.argus-split-50-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.argus-category-grid-8 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 16px;
}

/* Small Horizontal Post Cards */
.argus-horizontal-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(8,20,46,0.02);
}

.argus-horizontal-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 0, 0, 0.1);
}

.argus-horizontal-card-thumb {
    width: 110px;
    height: 75px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--gray-100);
}

.argus-horizontal-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.argus-horizontal-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
}

.argus-horizontal-card-cat {
    color: var(--primary-red);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
    letter-spacing: 0.5px;
}

.argus-horizontal-card-title {
    font-family: var(--font-odia), sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
    color: var(--dark-blue);
}

.argus-horizontal-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.argus-horizontal-card-title a:hover {
    color: var(--primary-red);
}

.argus-horizontal-card-meta {
    font-size: 11px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* Dark Mode Overrides for New Components */
.dark-theme .argus-section-title {
    color: var(--white);
}

.dark-theme .argus-section-title-wrap {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dark-theme .argus-horizontal-card {
    background-color: #1a1e29;
    border-color: rgba(255, 255, 255, 0.05);
}

.dark-theme .argus-horizontal-card-title {
    color: #f7fafc;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .argus-split-40-60,
    .argus-split-50-50 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .argus-category-grid-8 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .argus-horizontal-card-thumb {
        width: 90px;
        height: 65px;
    }
    
    .argus-horizontal-card-title {
        font-size: 12.5px;
        height: 34px;
    }
}

