/*
Theme Name: Vizhiththirai News
Theme URI: https://vizhiththirainews.com
Author: Vizhiththirai Media Network
Description: A premium, modern Tamil news theme for Vizhiththirai News.
Version: 1.1.0
Text Domain: vizhiththirai-news
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Mukta+Malar:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #f7f9fc;
    --text-primary: #1a1e26;
    --text-secondary: #4a5568;
    --white: #ffffff;
    --max-width: 1240px;
    --header-height: 100px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
}


/* Breaking News Ticker */
.breaking-news-ticker {
    background: #0d1117;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--primary-color);
    overflow: hidden;
}

.ticker-flex {
    display: flex;
    align-items: center;
}

.ticker-label {
    background: var(--secondary-color);
    color: white;
    padding: 4px 15px;
    font-weight: 800;
    margin-right: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    z-index: 2;
}

.ticker-content {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

/* The scrolling track holds two copies side-by-side for seamless loop */
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ticker-item {
    display: inline-block;
    padding: 0 8px;
}

.ticker-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.ticker-item a:hover {
    color: var(--secondary-color, #e74c3c);
}

.ticker-sep {
    color: var(--secondary-color, #e74c3c);
    margin: 0 12px;
    font-size: 0.7rem;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* Death Notices */
.obituary-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.obituary-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.obituary-info p {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.obituary-info span {
    font-size: 0.8rem;
    color: #888;
}

.view-all {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
}

/* Popular News Ranking */
.popular-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.popular-item .rank {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ddd;
    min-width: 30px;
}

.popular-item p {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}

.popular-item:hover .rank {
    color: var(--primary-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}



.home .page-header,
.front-page .page-header {
    display: none !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Common Layout Classes */
.grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.grid-1-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.flex-row {
    display: flex;
    gap: 20px;
}

/* Single Post Elements */
.post-title-main {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    font-family: 'Mukta Malar', sans-serif;
}

.author-avatar-small {
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: #333;
}

.post-date-time {
    font-size: 0.8rem;
    color: #888;
}

/* Archive Elements */
.archive-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.archive-thumb {
    flex: 0 0 240px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
}

.archive-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.archive-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header Styles */
.site-header {
    background: var(--primary-gradient);
    height: var(--header-height);
    display: flex;
    align-items: center;
    color: white;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 180px;
    margin-top: -10px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    z-index: 10;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Mukta Malar', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    margin-left: 15px;
}

.footer-about .logo-text {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.footer-about .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 0;
}

.header-top-links {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.header-top-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.header-top-links a:hover {
    color: #ffd700;
    /* Gold on hover */
    transform: translateY(-2px);
}

/* Nav Styles */
nav {
    background: transparent;
    height: auto;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links li.active a {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Elite Grid (Featured Section) */
.featured-grid-wrap {
    margin-bottom: 30px;
}

.featured-flex-container {
    display: flex;
    gap: 20px;
    height: 480px;
}

.featured-big {
    flex: 2;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.featured-side-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.featured-small {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.featured-big img,
.featured-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-big:hover img,
.featured-small:hover img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: white;
}

.featured-small .featured-overlay {
    padding: 20px 15px 15px;
}

.category-badge {
    background: var(--secondary-color);
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.featured-overlay h2,
.featured-overlay h3 {
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


/* Webstories V3 (Updated for smaller size) */
.webstories-section {
    margin-bottom: 35px;
}

.section-header-wrap {
    margin-bottom: 20px;
    position: relative;
}

.section-title-alt {
    font-size: 1.25rem;
    font-weight: 700;
    padding-bottom: 8px;
}

.pink-text {
    color: #d81b60;
}

.title-underline-gradient {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #d81b60 20%, #448aff 80%);
    opacity: 0.6;
}

.webstories-container {
    position: relative;
    padding: 0 10px;
    /* Reduced padding */
}

.webstories-slider {
    display: flex;
    gap: 15px;
    /* Reduced gap */
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.webstories-slider::-webkit-scrollbar {
    display: none;
}

.webstory-card-v3 {
    min-width: 200px;
    /* Reduced card width significantly */
    width: 200px;
    /* Fixed width */
    height: 320px;
    /* Adjusted height */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    background: #000;
}

.webstory-card-v3 .story-img-container {
    width: 100%;
    height: 100%;
}

.webstory-card-v3 .story-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.webstory-card-v3:hover .story-img-container img {
    transform: scale(1.05);
}

.webstory-card-v3 .story-content-v3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
}

.webstory-card-v3 h4 {
    margin: 0;
}

.webstory-card-v3 h4 a {
    color: white;
    font-size: 1rem;
    /* Slightly smaller font */
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.short-story-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.play-btn-overlay {
    position: absolute;
    bottom: 80px;
    /* Adjusted position */
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.play-icon {
    color: white;
    font-size: 0.7rem;
    margin-left: 2px;
}

.story-content-v3 {
    padding: 12px;
    background: #0d1117;
}

.story-content-v3 h4 {
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 6px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-content-v3 p {
    color: #8b949e;
    font-size: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-arrow {
    position: absolute;
    width: 32px;
    height: 32px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-arrow {
    left: -12px;
}

.next-arrow {
    right: -12px;
}

.slider-arrow::after {
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    display: inline-block;
}

.prev-arrow::after {
    transform: rotate(-135deg);
}

.next-arrow::after {
    transform: rotate(45deg);
}

/* Section Titles */
.section-title {
    padding: 8px 15px;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 700;
}

.pink-title {
    background: #E91E63;
}

.blue-title {
    background: var(--primary-color);
}

.orange-title {
    background: #FF9800;
}

.red-title {
    background: #F44336;
}

/* Content Columns */
.content-columns {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

/* Left Column - News List */
.news-list {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.list-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.list-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.list-item h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 600;
}

/* Right Column - Grid */
.news-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-item-v2 {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.grid-item-v2:hover {
    transform: translateY(-5px);
}

.grid-item-v2 .img-wrap {
    height: 180px;
}

.grid-item-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-item-v2 h4 {
    padding: 15px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.top-ad {
    margin-top: 10px;
}

.sidebar-ad {
    margin-top: 30px;
    height: 250px;
}

/* Sidebar News */
.sidebar-section {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.sidebar-section h3 {
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.sidebar-news-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-news-item:last-child {
    border-bottom: none;
}

.sidebar-news-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.sidebar-news-item h4 {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer */
/* Ad Banner */
.ad-banner {
    width: 100%;
    max-width: var(--max-width);
    margin: 30px auto;
    background: #f0f0f0;
    border: 1px dashed #ccc;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-banner::before {
    content: 'Advertisement / விளம்பரம்';
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 0.6rem;
    color: #bbb;
}

.ad-banner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about img {
    height: 50px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

/* =========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ========================================= */

/* Tablet & Medium Screens (992px and below) */
@media (max-width: 992px) {
    .content-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-img-container {
        height: 300px;
    }

    .featured-text h2 {
        font-size: 1.5rem;
    }

    .webstories-slider {
        gap: 15px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet & Small Screens (768px and below) */
@media (max-width: 768px) {

    /* Header Adjustments */
    .logo img {
        height: 80px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .header-top-links {
        display: none;
    }

    /* Layout Adjustments */
    .content-columns {
        grid-template-columns: 1fr !important;
    }

    .featured-grid-layout {
        grid-template-columns: 1fr !important;
    }

    .small-news-item {
        margin-bottom: 25px !important;
    }

    .grid-news-card {
        margin-bottom: 30px !important;
    }

    /* Main Featured Card */
    .main-featured-card.horizontal {
        flex-direction: column;
    }

    .featured-img-wrap {
        width: 100%;
        height: 250px;
    }

    .featured-content-wrap {
        padding: 20px;
    }

    .featured-content-wrap h2 {
        font-size: 1.3rem;
    }

    /* Webstories */
    .webstories-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .webstory-card-v3 {
        scroll-snap-align: start;
        min-width: 150px;
    }

    /* Layout Improvements */
    .grid-2-1,
    .grid-1-2,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .flex-row {
        flex-direction: column;
    }

    /* News Grid */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Single Post Layout */
    .single-post-layout {
        grid-template-columns: 1fr !important;
    }

    .post-header-new h1,
    .single-post-container h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    /* Footer */
    .footer-grid,
    footer .container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Mobile Screens (600px and below) */
@media (max-width: 600px) {
    body {
        padding-top: 50px !important;
        padding-bottom: 65px !important;
        background: #f4f6f9 !important;
    }

    /* Professional Mobile Top Bar (Orange) */
    .mobile-top-bar {
        display: block !important;
        background: var(--mobile-top-bar-bg, #ff9800) !important;
        color: #fff !important;
        height: 55px !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1100 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .mobile-flex {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 100% !important;
        padding: 0 10px !important;
    }

    .mobile-logo-wrap {
        flex-grow: 1;
        margin-left: 10px;
        overflow: hidden;
    }

    .mobile-brand-flex {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        text-decoration: none !important;
    }

    .mobile-logo-img {
        height: 32px !important;
        width: auto !important;
        object-fit: contain !important;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    .mobile-logo-text {
        font-family: 'Mukta Malar', sans-serif !important;
        font-weight: 800 !important;
        font-size: 0.95rem !important;
        text-align: left !important;
        color: #fff !important;
        line-height: 1.1 !important;
        white-space: nowrap;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .mobile-top-icons {
        display: flex !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .mobile-top-icons a {
        color: #fff !important;
        font-size: 1.2rem !important;
        text-decoration: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0.95;
        transition: transform 0.2s ease;
    }

    .mobile-top-icons a:active {
        transform: scale(0.9);
    }

    .mobile-top-icons .icon-label {
        font-size: 0.55rem;
        text-transform: capitalize;
        margin-top: -3px;
    }

    /* Professional Bottom Nav (Dark Blue) */
    .mobile-bottom-nav {
        display: flex !important;
        background: var(--mobile-bottom-nav-bg, #002e94) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 70px !important;
        z-index: 1100 !important;
        justify-content: space-around !important;
        align-items: center !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .nav-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-decoration: none !important;
        font-size: 0.75rem !important;
        font-weight: 500 !important;
    }

    .nav-item i {
        font-size: 1.4rem !important;
        margin-bottom: 2px !important;
    }

    .nav-item.active {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.15);
        padding: 5px 12px;
        border-radius: 8px;
    }

    /* Lateral News List Style (Image Left, Text Right) */
    .grid-content-posts {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    article.news-post-card,
    .small-news-item,
    .grid-news-card {
        display: flex !important;
        gap: 12px !important;
        background: #fff;
        padding: 8px !important;
        border-radius: 4px;
        border: 1px solid #eee;
        margin-bottom: 10px !important;
        align-items: flex-start !important;
    }

    article.news-post-card .post-thumb,
    .small-news-item img,
    .grid-news-card .card-img {
        width: 110px !important;
        height: 75px !important;
        flex-shrink: 0;
        margin-bottom: 0 !important;
        border-radius: 4px;
    }

    article.news-post-card h3,
    .small-news-item h4,
    .grid-news-card h3 {
        font-size: 0.95rem !important;
        line-height: 1.35 !important;
        margin: 0 !important;
        font-weight: 600 !important;
    }

    /* Professional Section Header Style */
    .section-header-wrap h3 {
        border-left: 5px solid #ff9800 !important;
        padding: 5px 12px !important;
        background: #f8f8f8 !important;
        font-size: 1.05rem !important;
        width: 100%;
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }

    .site-header {
        display: none !important;
    }

    .container {
        padding: 0 15px !important;
    }

    .featured-flex-container {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .featured-big {
        height: 250px !important;
        margin-top: 5px;
        border-radius: 8px !important;
    }

    .featured-small {
        height: 180px !important;
        margin-bottom: 10px !important;
        border-radius: 8px !important;
    }

    .featured-overlay h2 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }

    .category-split-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .col2-grid-top,
    .col2-list-bottom {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .homepage-main-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .single-post-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 15px !important;
    }

    .archive-item {
        flex-direction: column !important;
    }

    .archive-thumb {
        flex: 0 0 auto !important;
        width: 100% !important;
        height: 200px !important;
    }

    .entry-content {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
    }

    .share-box {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        text-align: center;
    }
}

/* Hide mobile elements on desktop */
@media (min-width: 601px) {

    .mobile-top-bar,
    .mobile-bottom-nav {
        display: none !important;
    }
}

.wa-join-badge {
    width: 100%;
    justify-content: center;
}

.post-content-pro {
    font-size: 1.1rem !important;
    line-height: 1.7;
}

/* Sidebar Widgets */
.astro-grid {
    grid-template-columns: 1fr;
}

/* Navigation Hidden on Mobile */
.nav-links {
    display: none;
}

/* Ad Banner */
.ad-banner {
    height: 80px;
    font-size: 0.85rem;
}

/* Featured Section */
.main-featured-card {
    margin-bottom: 20px;
}

.featured-img-wrap {
    height: 200px;
}

.featured-content-wrap {
    padding: 15px;
}

.featured-content-wrap h2 {
    font-size: 1.1rem;
    line-height: 1.4;
}

.main-tag-pill {
    font-size: 0.7rem;
    padding: 4px 10px;
}

.news-meta-time {
    font-size: 0.75rem;
}

/* Webstories Mobile */
.webstories-slider {
    gap: 10px;
    padding: 0 5px;
}

.webstory-card-v3 {
    min-width: 140px;
    height: 220px;
}

.webstory-card-v3 h4 a {
    font-size: 0.85rem;
}

.short-story-tag {
    font-size: 0.6rem;
    padding: 2px 6px;
}

/* Section Titles */
.section-title {
    font-size: 1.1rem;
    padding: 8px 15px;
}

.section-title-alt {
    font-size: 1rem;
}

/* News Cards */
.news-card {
    margin-bottom: 20px;
}

.news-card h3 {
    font-size: 1rem;
}

.news-card-img {
    height: 180px;
}

/* Small News List */
.small-news-item {
    flex-direction: column;
    align-items: flex-start;
}

.small-news-img {
    width: 100%;
    height: 150px;
    margin-right: 0;
    margin-bottom: 10px;
}

.small-news-content h4 {
    font-size: 0.95rem;
}

/* Grid News Cards */
.grid-news-card {
    margin-bottom: 20px;
}

.grid-news-img {
    height: 160px;
}

.grid-news-card h4 {
    font-size: 0.95rem;
}

/* Single Post Mobile */
.post-header-new h1 {
    font-size: 1.2rem !important;
    line-height: 1.4 !important;
}

.post-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.author-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
}

.author-name {
    font-size: 0.95rem;
}

.social-share-bar {
    flex-wrap: wrap;
    gap: 8px;
}

.social-btn {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
}

.content-area {
    padding: 15px;
}

.post-content {
    font-size: 1rem;
    line-height: 1.7;
}

/* Sidebar Mobile */
.sidebar-section {
    margin-top: 30px;
}

/* Footer Mobile */
.footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
}

.footer-about img {
    height: 40px;
}

.footer-bottom {
    font-size: 0.8rem;
}




/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .featured-content-wrap h2 {
        font-size: 1rem;
    }

    .webstory-card-v3 {
        min-width: 120px;
        height: 200px;
    }

    .section-title {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .news-card h3 {
        font-size: 0.9rem;
    }

    .post-header-new h1 {
        font-size: 1.1rem !important;
    }
}


/* =========================================
   SINGLE POST LAYOUT (New Premium Design)
   ========================================= */

.single-post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.content-area {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.post-header-new h1 {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    line-height: 1.5 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Meta Row: Categories | Time */
.post-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.meta-category a {
    background: #e3f2fd;
    color: #1e88e5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-right: 10px;
    text-transform: uppercase;
}

.meta-time {
    color: #777;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Premium Single Post Styling Upgrade */
.post-header-new {
    margin-bottom: 30px;
}

.post-breadcrumb {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    font-family: 'Mukta Malar', sans-serif;
}

.post-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.post-breadcrumb i {
    font-size: 0.7rem;
    margin: 0 8px;
    opacity: 0.5;
}

.post-header-new h1 {
    font-size: 2.4rem !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    font-family: 'Mukta Malar', sans-serif !important;
    color: #1a1a1a !important;
    margin: 0 0 20px 0 !important;
}

/* Fact Check Box Style */
.fact-check-box {
    background: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.fact-check-box i {
    font-size: 1.5rem;
    color: #ffc107;
}

.fact-check-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #856404;
}

/* Inline Warning Box */
.warning-rel-box {
    background: #fdf2f2;
    border: 1px dashed #f8b4b4;
    padding: 15px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.warning-rel-box strong {
    color: #c81e1e;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
}

/* Sticky Social Bar (Desktop) */
.sticky-social-wrap {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50px;
    margin-left: -70px;
    float: left;
}

@media (max-width: 1100px) {
    .sticky-social-wrap {
        display: none;
    }
}

.social-pill {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-pill:hover {
    transform: scale(1.1);
}

.social-pill.fb {
    background: #1877f2;
}

.social-pill.tw {
    background: #1da1f2;
}

.social-pill.wa {
    background: #25d366;
}

.social-pill.cp {
    background: #7f8c8d;
}

.post-content-pro {
    font-size: 1.25rem !important;
    line-height: 1.9 !important;
    font-family: 'Mukta Malar', sans-serif !important;
}

.post-content-pro p {
    margin-bottom: 30px !important;
}

/* Desktop Sidebar Improvements */
.sidebar-area {
    position: sticky;
    top: 80px;
    height: fit-content;
}


@media (max-width: 600px) {
    .post-header-new h1 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .post-meta-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px;
    }

    .meta-actions {
        width: 100%;
        justify-content: space-between;
    }

    .related-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .wa-join-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}




/* =========================================
   ADVERTISEMENT GRID SECTION (6 Boxes)
   ========================================= */

.ads-grid-section {
    margin: 40px 0;
}

.ads-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.ads-3-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

.ad-box {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
    position: relative;
}

.ad-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 40, 165, 0.1);
}

.ad-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ad-html-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.ad-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.ad-placeholder span {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Responsive Ads Grid */
@media (max-width: 992px) {
    .ads-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ads-grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ad-box {
        min-height: 200px;
    }

    .ad-placeholder span {
        font-size: 0.85rem;
    }
}

/* Homepage Main Layout Responsive */
@media (max-width: 900px) {
    .homepage-main-layout {
        grid-template-columns: 1fr !important;
    }
}

/* Professional Featured Grid */
.featured-grid-wrap {
    margin-bottom: 50px;
}

.featured-flex-container {
    display: flex;
    gap: 20px;
}

.featured-big {
    flex: 2;
    position: relative;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.featured-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-big:hover img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
}

.featured-small {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.featured-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-small:hover img {
    transform: scale(1.05);
}

.featured-small .featured-overlay {
    padding: 20px 15px;
}

@media (max-width: 768px) {
    .featured-flex-container {
        flex-direction: column;
        height: auto;
        /* Allow items to stack naturally */
    }

    .featured-big {
        height: 300px;
        margin-bottom: 20px;
    }

    .featured-side-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        height: auto;
    }

    .featured-small {
        height: 180px;
    }
}

@media (max-width: 500px) {
    .featured-big {
        height: 220px;
    }

    .featured-side-list {
        grid-template-columns: 1fr;
    }

    .featured-small {
        height: 160px;
    }
}


/* Professional Footer Styles */
.footer-col h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col h4 {
    position: relative;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-col ul li a:hover {
    color: var(--secondary-color) !important;
    padding-left: 5px;
}

.footer-col ul li a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* =========================================
   EXPERT NEWS LAYOUT (V2)
   ========================================= */

/* Pill Tags & Time Row */
.post-tags-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.tags-list-v2 {
    display: flex;
    gap: 8px;
}

.pill-tag {
    background: #f0f2f5;
    color: #5d78ff;
    padding: 2px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

.post-time-v2 {
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Author Bar V2 */
.author-bar-v2 {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.author-main-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initials-avatar {
    width: 42px;
    height: 42px;
    background: #fdf2f2;
    color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.author-meta-v2 {
    display: flex;
    flex-direction: column;
}

.author-name-v2 {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
}

.author-cat-v2 {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-style: italic;
}

.report-btn-v2 {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Share Bar V2 */
.share-bar-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.share-main-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label-v2 {
    background: #f39c12;
    color: #fff;
    padding: 10px 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border-radius: 4px;
}

.share-icons-v2 {
    display: flex;
    gap: 8px;
}

.share-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s;
}

.share-circle:hover {
    transform: translateY(-3px);
}

.wa-join-badge {
    background: #fff;
    border: 1px solid #25d366;
    border-radius: 50px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.wa-badge-icon {
    font-size: 1.2rem;
    color: #25d366;
}

.wa-badge-text {
    line-height: 1;
}

.wa-badge-text span {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    color: #333;
}

.wa-badge-text strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: #333;
}

/* Inline Related Box */
.inline-related-box {
    border: 1px dashed #ccc;
    padding: 12px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.inline-rel-thumb {
    flex: 0 0 100px;
    height: 65px;
    overflow: hidden;
    border-radius: 4px;
}

.inline-rel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inline-rel-title {
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
}

.inline-rel-title a {
    color: #333;
    text-decoration: none;
}

/* Sidebar Astrology Widget */
.astrology-widget {
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 30px;
}

.astro-header {
    background: #8e1a1a;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.astro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 15px;
}

.astro-card {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
}

.astro-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 10px;
}

.astro-name {
    font-size: 0.85rem;
    font-weight: 800;
    margin: 5px 0;
}

.astro-rating {
    font-size: 0.75rem;
    color: #f39c12;
    margin-bottom: 10px;
}

.astro-btn {
    background: #e74c3c;
    color: #fff;
    display: block;
    padding: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
}

/* Sidebar Day Grid */
.sidebar-days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 30px;
}

.post-header-expert {
    background: transparent !important;
    height: auto !important;
    display: block !important;
    position: static !important;
    color: inherit !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 30px !important;
}

.post-header-expert h1 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Sidebar Refinements */
.sidebar-section h3 {
    border-left: 4px solid var(--secondary-color);
    padding-left: 12px;
    margin-bottom: 20px;
}

.sidebar-news-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-news-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.sidebar-news-item h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Death Notices Sidebar */
.death-notices-sidebar h3 {
    border-left: 4px solid #333;
    padding-left: 12px;
    margin-bottom: 20px;
}

.obituary-item {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

/* =========================================
   HOMEPAGE PREMIUM COMPONENTS (TN Style)
   ========================================= */

.section-accent-header {
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.section-accent-header h3 {
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.mini-news-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.mini-thumb {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-title {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
}

.mini-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.mini-title a:hover {
    color: var(--primary-color);
}

.brand-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    font-weight: 700;
}

.brand-tag.mini {
    bottom: 5px;
    left: 5px;
    background: rgba(231, 76, 60, 0.8);
    border-radius: 20px;
}

/* Tabbed Section Styles */
.home-tab-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.tabs-header {
    background: #444;
    display: flex;
    gap: 2px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: #555;
}

.tab-btn.active {
    background: var(--secondary-color);
}

.tab-pane {
    display: none;
    padding: 20px;
}

.tab-pane.active {
    display: block;
}

/* Lateral News Card Refinement */
.lateral-news-card {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.lateral-thumb {
    flex: 0 0 200px;
    height: 130px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.lateral-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.lateral-news-card:hover .lateral-thumb img {
    transform: scale(1.05);
}

.lateral-info {
    flex: 1;
}

.lateral-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0 0 10px 0;
    font-weight: 800;
}

.lateral-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.lateral-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-pill {
    font-size: 0.75rem;
    font-weight: 700;
}

.meta-pill.category a {
    background: #fdf2f2;
    color: #e74c3c;
    padding: 3px 10px;
    border-radius: 4px;
    text-decoration: none;
}

.meta-pill.time {
    color: #888;
}

/* Sidebar Widget Styling */
.widget-title {
    background: #f8f9fa;
    border-bottom: 2px solid var(--primary-color);
    padding: 10px 15px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .category-split-row {
        grid-template-columns: 1fr !important;
    }

    .lateral-thumb {
        flex: 0 0 120px;
        height: 80px;
    }

    .lateral-title {
        font-size: 1rem;
    }
}

/* =========================================
   HOME TOP AD BANNER STYLING
   ========================================= */
.home-top-ad-wrap {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.ad-banner-premium {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ad-banner-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.ad-banner-premium img {
    height: auto;
    max-height: 120px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 768px) {
    .ad-banner-premium img {
        max-height: 80px;
    }
}

/* =========================================
   SINGLE POST PAGE - TNNews Style Layout
   ========================================= */

/* Breadcrumb Bar */
.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-size: 0.82rem;
    color: #888;
}

.breadcrumb-bar a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.2s;
}

.breadcrumb-bar a:hover {
    color: var(--secondary-color);
}

.breadcrumb-bar .sep {
    margin: 0 6px;
    color: #ccc;
}

/* Post Page Wrapper */
.post-page-wrap {
    padding: 25px 0 60px;
}

/* Two-column grid: main + sidebar */
.post-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

/* Main content column */
.post-main-col {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.post-main-inner {
    padding: 28px 30px 30px;
}

/* Category + Time top row */
.post-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cat-pill {
    background: #fdf2f2;
    color: #e12727;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 4px;
    border: 1px solid #fce8e8;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.cat-pill:hover {
    background: #e12727;
    color: #fff;
}

.cat-pill.blue {
    background: #eef2ff;
    color: #0028a5;
    border-color: #d6dfff;
}

.cat-pill.blue:hover {
    background: #0028a5;
    color: #fff;
}

.post-time-top {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888;
    font-size: 0.83rem;
}

/* H1 Title */
.post-h1 {
    font-size: 1.95rem;
    line-height: 1.35;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    font-family: 'Mukta Malar', sans-serif;
    letter-spacing: -0.02em;
}

/* Author Bar */
.author-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 18px;
    border: 1px solid #f0f0f0;
}

.author-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0028a5, #e12727);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.author-details strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #222;
}

.author-details span {
    font-size: 0.78rem;
    color: #e12727;
    font-style: italic;
}

.report-btn {
    color: #f39c12;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border: 1px solid #f39c12;
    border-radius: 20px;
    transition: all 0.2s;
    text-decoration: none;
}

.report-btn:hover {
    background: #f39c12;
    color: #fff;
}

/* Share Bar */
.share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.share-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-vertical-label {
    background: #f39c12;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 8px 4px;
    border-radius: 4px;
    line-height: 1;
}

.share-btns {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.share-btn-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.share-btn-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.share-count {
    font-size: 0.7rem;
    font-weight: 700;
    background: #f0f0f0;
    padding: 6px 10px;
    border-radius: 20px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-join-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #25d366;
    border-radius: 30px;
    padding: 6px 14px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    transition: background 0.2s;
}

.wa-join-btn:hover {
    background: #e8fef3;
}

.wa-join-btn i {
    color: #25d366;
    font-size: 1.2rem;
}

.wa-join-text small {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wa-join-text strong {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a1a1a;
}

/* Featured Image */
.post-featured-img {
    margin-bottom: 24px;
    border-radius: 6px;
    overflow: hidden;
}

.post-featured-img img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 480px;
    object-fit: cover;
}

/* Article body content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2c2c2c;
    font-family: 'Mukta Malar', sans-serif;
    margin-bottom: 30px;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content h2,
.article-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    margin: 28px 0 14px;
    padding-left: 14px;
    border-left: 4px solid var(--primary-color);
}

/* Feature List */
.article-feature-list {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    padding: 18px 20px;
    margin: 20px 0;
    list-style: none;
}

.article-feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.article-feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.7rem;
    top: 3px;
}

/* WhatsApp Channel Banner */
.whatsapp-channel-banner {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 28px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    text-decoration: none;
}

.wa-channel-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.wa-channel-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.wa-channel-text span {
    font-size: 0.82rem;
    opacity: 0.9;
}

.wa-channel-join-btn {
    margin-left: auto;
    background: #fff;
    color: #128c7e;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 20px;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.2s;
}

.wa-channel-join-btn:hover {
    transform: scale(1.05);
}

/* Fact Check Section */
.fact-check-section {
    background: #fffbf0;
    border: 1px solid #f5c842;
    border-left: 5px solid #f5c842;
    border-radius: 6px;
    padding: 20px 22px;
    margin: 30px 0;
}

.fact-check-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.fact-check-icon {
    width: 36px;
    height: 36px;
    background: #f5c842;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.fact-check-header h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #7a5c00;
    margin: 0;
    border: none;
    padding: 0;
}

.fact-check-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Post Bottom Tags */
.post-tags-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-tags-bottom .tag,
.post-tags-bottom a {
    font-size: 0.8rem;
    color: #555;
    background: #f0f2f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.post-tags-bottom .tag:hover,
.post-tags-bottom a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Related Posts Section */
.related-posts-section {
    margin-top: 24px;
}

.section-heading {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-heading-bar {
    width: 5px;
    height: 28px;
    background: var(--secondary-color);
    border-radius: 3px;
    margin-right: 12px;
    flex-shrink: 0;
}

.section-heading h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    margin: 0;
    border: none;
    padding: 0;
}

.related-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.related-card {
    background: #f8f9fa;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.related-card-img {
    height: 130px;
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.related-card:hover .related-card-img img {
    transform: scale(1.06);
}

.related-card-body {
    padding: 12px;
}

.related-card-cat {
    font-size: 0.72rem;
    font-weight: 700;
    color: #e12727;
    margin-bottom: 6px;
}

.related-card-body h4 {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card-body h4 a {
    color: #1a1a1a;
    text-decoration: none;
}

.related-card-body h4 a:hover {
    color: var(--primary-color);
}

.related-card-time {
    font-size: 0.72rem;
    color: #999;
    margin-top: 6px;
}

/* ====== SIDEBAR ====== */
.post-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.widget-header {
    background: linear-gradient(135deg, #0028a5, #1a4bd6);
    color: #fff;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-header.red-header {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.widget-header.dark-header {
    background: #1a1a2e;
}

.widget-header.green-header {
    background: linear-gradient(135deg, #16a085, #1abc9c);
}

.widget-body {
    padding: 16px;
}

/* Numbered News List */
.numbered-news-list {
    list-style: none;
}

.numbered-news-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.numbered-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ddd;
    min-width: 32px;
    line-height: 1;
    margin-top: 2px;
    transition: color 0.2s;
    font-family: 'Inter', sans-serif;
}

.numbered-news-item:hover .news-num {
    color: var(--primary-color);
}

.news-num-text {
    flex: 1;
}

.news-num-title {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-num-title a {
    color: #222;
    text-decoration: none;
}

.news-num-title a:hover {
    color: var(--primary-color);
}

.news-num-meta {
    font-size: 0.72rem;
    color: #999;
}

/* Social Follow Widget */
.social-follow-widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px;
}

.social-follow-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    gap: 5px;
}

.social-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-follow-btn i {
    font-size: 1.5rem;
}

.follow-count {
    font-size: 1rem;
    font-weight: 900;
}

.follow-label {
    font-size: 0.7rem;
    opacity: 0.9;
}

.fb-btn {
    background: linear-gradient(135deg, #1877f2, #1557c0);
}

.yt-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.wa-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.tg-btn {
    background: linear-gradient(135deg, #0088cc, #006699);
}

/* Sidebar News Items */
.sidebar-news-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.sidebar-news-item:last-child {
    border-bottom: none;
}

.sidebar-thumb {
    flex: 0 0 75px;
    height: 55px;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.sidebar-news-item:hover .sidebar-thumb img {
    transform: scale(1.08);
}

.sidebar-news-text {
    flex: 1;
}

.sidebar-news-text h4 {
    font-size: 0.86rem;
    line-height: 1.35;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-news-text h4 a {
    color: #222;
    text-decoration: none;
}

.sidebar-news-text h4 a:hover {
    color: var(--primary-color);
}

.sidebar-news-text .time {
    font-size: 0.7rem;
    color: #999;
}

/* Ad Widget Box */
.ad-widget-box {
    background: linear-gradient(135deg, #f8f9fa, #eee);
    border: 2px dashed #ddd;
    border-radius: 8px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #bbb;
    gap: 10px;
    text-align: center;
    padding: 20px;
}

.ad-widget-box i {
    font-size: 2rem;
}

.ad-widget-box span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ====== SINGLE POST RESPONSIVE ====== */
@media (max-width: 960px) {
    .post-grid {
        grid-template-columns: 1fr;
    }

    .related-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .post-h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .post-main-inner {
        padding: 18px 15px;
    }

    .post-h1 {
        font-size: 1.3rem;
    }

    .related-grid-3 {
        grid-template-columns: 1fr;
    }

    .share-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-follow-widget {
        grid-template-columns: 1fr 1fr;
    }

    .whatsapp-channel-banner {
        flex-direction: column;
        text-align: center;
    }

    .wa-channel-join-btn {
        margin-left: 0;
    }
}

/* Language Switcher UI */
.lang-selector-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 50px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.lang-selector-wrap:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lang-link {
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.lang-link:hover {
    color: #ffd700 !important;
    /* Gold */
}

.lang-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile adjustments */
.mobile-lang {
    margin-left: 10px;
    padding: 4px 10px;
}

.mobile-lang .lang-link {
    font-size: 0.8rem;
}

.desktop-lang {
    margin-left: auto;
    /* Push to right if flex container */
}

/* Manual Side Menu Styling */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 10001;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.side-menu.active {
    left: 0;
}

.side-menu-header {
    background: var(--primary-gradient);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: white;
}

.side-logo {
    font-family: 'Mukta Malar', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

.close-menu {
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.side-menu-body {
    padding: 15px 0;
    overflow-y: auto;
}

.side-menu-body a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 4px solid transparent;
}

.side-menu-body a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.side-menu-body a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.side-menu-body hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

/* Mobile Top Bar visibility fix */
@media (max-width: 991px) {
    .site-header {
        display: none !important;
    }

    .mobile-top-bar {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr !important;
    }
}

/* ====== CUSTOM SIDEBAR WIDGETS (Screenshot Styles) ====== */

/* 1. Astrology / Special Service Widget */
.widget-astrology {
    background: linear-gradient(to bottom, #8e1b1b, #c0392b);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    margin-bottom: 25px;
}

.astrology-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.astrology-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 800;
}

.astrology-header h3 span {
    font-size: 0.7rem;
    background: #ffcc00;
    color: #333;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

.astrology-icons {
    display: flex;
    gap: 5px;
}

.astro-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}

.astro-icon.tel {
    background: #ffcc00;
    color: #333;
}

.astro-icon.wa {
    background: #25d366;
}

.astrology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.astro-card {
    background: #fff8e1;
    border-radius: 6px;
    padding: 10px;
    color: #333;
    text-align: left;
}

.astro-img {
    width: 100%;
    aspect-ratio: 1/1.2;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.astro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.astro-name {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.2;
}

.astro-rating {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.astro-rating i {
    color: #f1c40f;
}

.astro-view-more {
    display: block;
    width: 100%;
    background: #e74c3c;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* 2. Date/Day Button Grid */
.widget-days-grid {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

.day-btn-full {
    display: block;
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #ddd;
    color: #444;
    text-align: center;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.days-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.day-btn-small {
    background: #f8f9fa;
    border: 1px solid #ddd;
    color: #444;
    text-align: center;
    padding: 6px 2px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
}

.day-btn-small:hover,
.day-btn-full:hover {
    background: #eee;
}

/* 3. Special Article Box (Green Header) */
.widget-special-box {
    margin-bottom: 25px;
}

.special-box-header {
    background: #006b3d;
    color: #fff;
    padding: 10px 15px;
    font-weight: 800;
    border-radius: 6px 6px 0 0;
    font-size: 1rem;
}

.special-box-body {
    background: #e9f5ef;
    padding: 15px;
    border-radius: 0 0 6px 6px;
}

.special-box-img {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.special-box-img img {
    width: 100%;
    display: block;
}

.special-box-title {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 8px;
}

.special-box-title a {
    color: #00331d;
    text-decoration: none;
}

.special-box-meta {
    font-size: 0.75rem;
    color: #6e8e7e;
}

/* 4. Obituaries / Death Notices */
.widget-obituary {
    margin-bottom: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.obituary-header {
    background: #444;
    color: #fff;
    padding: 10px 15px;
    font-weight: 800;
}

.obituary-item {
    display: flex;
    padding: 12px;
    border-bottom: 1px dashed #ddd;
    gap: 12px;
    align-items: center;
}

.obituary-item:last-child {
    border-bottom: none;
}

.obituary-text {
    flex: 1;
}

.obituary-cat {
    background: #333;
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 6px;
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
}

.yellow-cat {
    background: #e67e22;
}

.obituary-name {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.obituary-location {
    font-size: 0.72rem;
    color: #888;
    margin-bottom: 3px;
}

.obituary-date {
    font-size: 0.72rem;
    color: #666;
    font-weight: 700;
}

.obituary-thumb {
    width: 70px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.obituary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 5. Country Contacts */
.widget-country-contacts {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item img {
    width: 24px;
    border-radius: 2px;
}

.contact-phone {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.contact-label {
    font-size: 0.7rem;
    color: #999;
    font-weight: 700;
    width: 60px;
    text-align: right;
}

/* 6. Tag Cloud Buttons */
.widget-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.pill-btn {
    border: 1px solid #ddd;
    color: #0066cc;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.pill-btn:hover {
    background: #f0f7ff;
    border-color: #0066cc;
}


/* ==========================================================
   PROFESSIONAL MOBILE RESPONSIVE CSS
   Breakpoints: Tablet ≤1024px | Mobile ≤768px | Small ≤480px
   ========================================================== */

/* ── TABLET (≤ 1024px) ───────────────────────────────────── */
@media (max-width: 1024px) {

    /* Header */
    .site-header { height: auto; padding: 12px 0; position: static; }
    .header-content { flex-wrap: wrap; gap: 10px; }
    .logo img { height: 120px; }
    .logo-text { font-size: 1.5rem; }
    .nav-links { gap: 14px; font-size: 0.95rem; }

    /* Mobile top bar — hide on desktop */
    .mobile-top-bar { display: none; }

    /* Main grids */
    .grid-2-1 { grid-template-columns: 1fr; }
    .grid-1-2 { grid-template-columns: 1fr; }
    .grid-2   { grid-template-columns: 1fr 1fr; }
    .grid-3   { grid-template-columns: 1fr 1fr; }
    .content-columns { grid-template-columns: 1fr; }

    /* Featured hero */
    .featured-flex-container { height: auto; flex-direction: column; }
    .featured-big  { height: 300px; }
    .featured-side-list { flex-direction: row; height: auto; }
    .featured-small { height: 200px; flex: 1; }

    /* Category split */
    .category-split-row { grid-template-columns: 1fr; gap: 20px; }

    /* Homepage layout */
    .homepage-main-layout { display: block !important; }
    .home-sidebar { margin-top: 30px; }

    /* Ticker */
    .ticker-label { font-size: 0.65rem; padding: 4px 10px; }

    /* Tabs */
    .home-tab-wrapper { margin-bottom: 20px; }
    .tabs-header { gap: 4px; overflow-x: auto; flex-wrap: nowrap; }
    .tab-btn { white-space: nowrap; padding: 8px 14px; font-size: 0.85rem; }

    /* Archive */
    .archive-item { flex-direction: column; }
    .archive-thumb { flex: none; width: 100%; height: 220px; }

    /* Single post */
    .single-main-layout { display: block !important; }
    .single-sidebar { margin-top: 30px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 30px; }
}

/* ── MOBILE (≤ 768px) ────────────────────────────────────── */
@media (max-width: 768px) {

    /* ---------- Global ---------- */
    body { font-size: 0.95rem; }
    .container { padding: 0 14px; }

    /* ---------- Desktop header → HIDE ---------- */
    .site-header { display: none !important; }
    .top-utility-bar { display: none !important; }

    /* ---------- Mobile top bar → SHOW ---------- */
    .mobile-top-bar {
        display: block !important;
        background: var(--primary-gradient, linear-gradient(135deg, #0028a5, #001775));
        position: sticky;
        top: 0;
        z-index: 1100;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .mobile-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        gap: 10px;
    }
    .mobile-menu-btn {
        font-size: 1.35rem;
        color: #fff;
        cursor: pointer;
        padding: 6px;
        border-radius: 4px;
        min-width: 36px;
        text-align: center;
        transition: background 0.2s;
    }
    .mobile-menu-btn:hover { background: rgba(255,255,255,0.15); }

    .mobile-brand-flex {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }
    .mobile-logo-img { height: 38px; width: auto; }
    .mobile-logo-text {
        font-family: 'Mukta Malar', sans-serif;
        font-size: 1.05rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.1;
    }
    .mobile-top-icons {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #fff;
        font-size: 1.1rem;
    }
    .mobile-top-icons a { color: #fff; }
    .icon-label { display: none; }

    /* Mobile Language Selector */
    .mobile-lang { display: flex; align-items: center; gap: 5px; font-size: 0.75rem; }
    .mobile-lang .lang-link { color: #fff; font-weight: 600; cursor: pointer; }
    .mobile-lang .lang-sep { color: rgba(255,255,255,0.5); }

    /* ---------- Side Drawer Menu ---------- */
    .side-menu-overlay {
        display: none;
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 1200;
        backdrop-filter: blur(2px);
    }
    .side-menu-overlay.active { display: block; }

    .side-menu {
        position: fixed;
        top: 0; left: -285px;
        width: 280px;
        height: 100vh;
        background: #0d1117;
        z-index: 1300;
        transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
    .side-menu.active { left: 0; }

    .side-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        background: var(--primary-gradient, linear-gradient(135deg,#0028a5,#001775));
        flex-shrink: 0;
    }
    .side-logo {
        font-family: 'Mukta Malar', sans-serif;
        font-size: 1.1rem;
        font-weight: 800;
        color: #fff;
    }
    .close-menu { font-size: 1.2rem; color: #fff; cursor: pointer; padding: 4px; }

    .side-menu-body { padding: 10px 0; flex: 1; }
    .side-menu-body a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 13px 22px;
        color: #e0e0e0;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        transition: background 0.2s, color 0.2s;
    }
    .side-menu-body a:hover { background: rgba(255,255,255,0.07); color: #fff; }
    .side-menu-body a i { width: 20px; text-align: center; color: var(--secondary-color, #e74c3c); }
    .side-menu-body hr { border-color: rgba(255,255,255,0.1); margin: 6px 0; }

    /* ---------- Breaking News Ticker ---------- */
    .ticker-label { font-size: 0.62rem; padding: 3px 8px; margin-right: 10px; }
    .ticker-track { animation-duration: 30s; }
    .ticker-item { font-size: 0.82rem; }

    /* ---------- Hero Featured Grid ---------- */
    .featured-flex-container { flex-direction: column; height: auto; gap: 10px; }
    .featured-big  { height: 220px; flex: none; width: 100%; }
    .featured-side-list { flex-direction: row; height: auto; gap: 10px; }
    .featured-small { height: 160px; flex: 1; }
    .featured-overlay h2 { font-size: 1.1rem !important; }
    .featured-overlay h3 { font-size: 0.88rem !important; }

    /* ---------- Category Columns ---------- */
    .category-split-row  { grid-template-columns: 1fr !important; gap: 15px; }
    .category-triple-row { grid-template-columns: 1fr !important; gap: 15px; }
    .col2-grid-top { grid-template-columns: 1fr 1fr !important; }
    .col2-list-bottom { grid-template-columns: 1fr !important; }

    /* ---------- Home Tab Section ---------- */
    .homepage-main-layout { display: block !important; }
    .home-sidebar { margin-top: 24px; }
    .tabs-header { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .tab-btn { white-space: nowrap; padding: 7px 12px; font-size: 0.8rem; }

    /* Lateral news card — horizontal on mobile */
    .lateral-news-card { flex-direction: row; gap: 10px; align-items: flex-start; }
    .lateral-thumb { width: 100px; min-width: 100px; height: 72px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
    .lateral-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .lateral-title { font-size: 0.9rem; line-height: 1.35; }
    .lateral-meta { flex-wrap: wrap; gap: 4px; }
    .meta-pill { font-size: 0.7rem; }

    /* ---------- Grids ---------- */
    .grid-2   { grid-template-columns: 1fr !important; }
    .grid-3   { grid-template-columns: 1fr !important; }
    .grid-2-1 { grid-template-columns: 1fr !important; }
    .grid-1-2 { grid-template-columns: 1fr !important; }
    .flex-row { flex-direction: column; }

    /* ---------- Single Post ---------- */
    .single-main-layout { display: block !important; }
    .single-sidebar { display: none; } /* Hide on mobile to save space */
    .post-title-main { font-size: 1.5rem !important; }
    .post-featured-img img { border-radius: 0; }
    .share-buttons-bar { flex-wrap: wrap; gap: 6px; }
    .share-btn { padding: 6px 12px; font-size: 0.78rem; }

    /* Related posts → 1 column */
    .related-grid { grid-template-columns: 1fr !important; }

    /* ---------- Webstories ---------- */
    .webstory-card-v3 { min-width: 155px; width: 155px; height: 250px; }

    /* ---------- Archive ---------- */
    .archive-item { flex-direction: column; }
    .archive-thumb { flex: none; width: 100%; height: 200px; }

    /* ---------- Sidebar Widgets ---------- */
    .sidebar-section { padding: 14px; }
    .astrology-grid { grid-template-columns: 1fr 1fr; }

    /* ---------- Footer ---------- */
    .footer-grid { grid-template-columns: 1fr !important; gap: 24px; }
    .footer-bottom-bar { flex-direction: column; gap: 8px; text-align: center; }

    /* ---------- Ads ---------- */
    .post-ad-unit iframe { width: 100% !important; }

    /* ---------- Content columns ---------- */
    .content-columns { grid-template-columns: 1fr !important; }

    /* ---------- Section headers ---------- */
    .section-title { font-size: 0.95rem; padding: 6px 12px; }
    .section-header-wrap { margin-bottom: 14px; }

    /* ---------- Mini news list items ---------- */
    .mini-news-item { flex-direction: row; gap: 10px; }
    .mini-thumb { width: 80px; min-width: 80px; height: 58px; }
    .mini-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
    .mini-title { font-size: 0.88rem; line-height: 1.35; }

    /* ---------- Tab Pagination ---------- */
    .tab-page-btn { padding: 7px 14px; font-size: 0.8rem; }
}

/* ── SMALL MOBILE (≤ 480px) ──────────────────────────────── */
@media (max-width: 480px) {

    .mobile-logo-text { font-size: 0.9rem; }
    .mobile-logo-img  { height: 32px; }

    .featured-big   { height: 180px; }
    .featured-small { height: 130px; }
    .featured-overlay h2 { font-size: 0.95rem !important; }

    .col2-grid-top { grid-template-columns: 1fr !important; }

    .post-title-main { font-size: 1.25rem !important; }
    .article-content { font-size: 1rem; line-height: 1.7; }

    .webstory-card-v3 { min-width: 130px; width: 130px; height: 210px; }

    .lateral-thumb { width: 85px; min-width: 85px; height: 62px; }

    .footer-grid { gap: 18px; }
    .footer-about .logo-text { font-size: 0.95rem; }

    .tab-pagination { flex-wrap: wrap; gap: 8px; }
    .tab-page-info  { font-size: 0.78rem; }

    .astrology-grid { grid-template-columns: 1fr; }
    .days-sub-grid  { grid-template-columns: repeat(2, 1fr) !important; }
    .day-btn-small[style*="span 3"] { grid-column: span 2 !important; }

    .widget-astrology,
    .widget-days-grid,
    .widget-special-box,
    .widget-obituary,
    .widget-country-contacts { margin-bottom: 16px; }
}

/* ── PRINT HIDE ───────────────────────────────────────────── */
@media print {
    .site-header, .mobile-top-bar, .breaking-news-ticker,
    .home-sidebar, .single-sidebar, .footer-main,
    .side-menu, .side-menu-overlay, .tab-pagination { display: none !important; }
    body { color: #000; background: #fff; }
}


/* ===== TAB PAGINATION ===== */
.tab-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 0 8px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.tab-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--primary-color, #0028a5);
    color: #fff;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.tab-page-btn:hover {
    background: var(--secondary-color, #e74c3c);
    color: #fff;
    transform: translateY(-1px);
}

.tab-page-info {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    min-width: 50px;
    text-align: center;
}

/* ===== TODAY'S DAY-WISE NEWS WIDGET ===== */

/* Active day button (today's weekday) */
.day-btn-active {
    background: var(--secondary-color, #e74c3c) !important;
    color: #fff !important;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(231,76,60,0.35);
}

/* Today news list under the day buttons */
.today-news-list {
    margin-top: 12px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.today-news-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.today-news-item:last-child { border-bottom: none; }

.today-thumb {
    width: 70px;
    min-width: 70px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.today-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.today-thumb:hover img { transform: scale(1.05); }

.today-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.today-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1e26;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.2s;
}

.today-title:hover { color: var(--primary-color, #0028a5); }

.today-time {
    font-size: 0.72rem;
    color: #999;
    font-weight: 500;
}

.no-today-news {
    font-size: 0.82rem;
    color: #aaa;
    text-align: center;
    padding: 10px 0;
}

/* Today button with date */
.day-btn-full {
    font-size: 0.82rem;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================
   SITE NAV BAR + LANGUAGE TABS
   ========================================================== */

/* Nav bar strip */
.site-nav-bar {
    background: var(--primary-color, #0028a5);
    border-bottom: 3px solid var(--secondary-color, #e74c3c);
    position: sticky;
    top: 0;
    z-index: 1090;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
    display: flex;
    align-items: stretch;
    min-height: 46px;
}

/* Reset WP nav menu ul */
.site-nav-bar .nav-links {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.site-nav-bar .nav-links li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.site-nav-bar .nav-links li a {
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: rgba(255,255,255,0.90);
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'Mukta Malar', 'Noto Sans Tamil', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.site-nav-bar .nav-links li a:hover,
.site-nav-bar .nav-links li.current-menu-item > a,
.site-nav-bar .nav-links li.current-menu-ancestor > a {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Dropdown support */
.site-nav-bar .nav-links li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    background: #0028a5;
    border-top: 3px solid var(--secondary-color, #e74c3c);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    list-style: none;
    padding: 6px 0;
    z-index: 1200;
}

.site-nav-bar .nav-links li:hover > ul { display: block; }

.site-nav-bar .nav-links li ul li a {
    padding: 10px 18px;
    display: block;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.85rem;
}

/* ── Header Language Tabs ── */
.header-lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 6px 0 6px 16px;
    margin-left: auto;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.lang-tab {
    cursor: pointer;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    user-select: none;
}

.lang-tab:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.lang-tab-sep {
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
}

/* ── Desktop header: lang switcher in site-header ── */
.header-content .header-lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--primary-color, #0028a5);
    border-radius: 6px;
    margin-left: auto;
}

.header-content .lang-tab       { color: #fff; font-size: 0.8rem; }
.header-content .lang-tab-sep   { color: rgba(255,255,255,0.4); }

/* Hide nav bar on mobile (replaced by mobile top bar) */
@media (max-width: 768px) {
    .site-nav-bar { display: none !important; }
    .header-content .header-lang-switcher { display: none !important; }
}

/* ===================================================
   SRILANKA CINEMA POSTER WIDGET
   =================================================== */

.widget-cinema-posters {
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    background: #111;
}

.cinema-widget-header {
    background: linear-gradient(135deg, #8b0000 0%, #c0392b 100%);
    color: #fff;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.cinema-icon { font-size: 1.1rem; }

.cinema-poster-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 4px;
    background: #1a1a1a;
}

.cinema-poster-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 2/3;
    background: #222;
}

.cinema-poster-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.cinema-poster-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.3s;
}

.cinema-poster-card:hover .cinema-poster-img img {
    transform: scale(1.06);
    filter: brightness(0.75);
}

.cinema-poster-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(0,0,0,0.35);
}

.cinema-poster-card:hover .cinema-poster-overlay { opacity: 1; }

.cinema-play-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 16px rgba(255,255,255,0.6);
}

.cinema-poster-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 20px 6px 6px;
    text-align: center;
    line-height: 1.2;
    transform: translateY(4px);
    transition: transform 0.3s;
}

.cinema-poster-card:hover .cinema-poster-title { transform: translateY(0); }

.cinema-see-more {
    display: block;
    text-align: center;
    padding: 10px;
    background: #1a1a1a;
    color: #e74c3c;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border-top: 1px solid #2a2a2a;
    transition: background 0.2s, color 0.2s;
}

.cinema-see-more:hover {
    background: #c0392b;
    color: #fff;
}

@media (max-width: 480px) {
    .cinema-poster-grid { gap: 3px; padding: 3px; }
    .cinema-poster-title { font-size: 0.65rem; }
}

/* ===================================================
   SIDEBAR NUMBERED WIDGET HEADERS
   =================================================== */

.sb-num-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color, #0028a5) 0%, #001a6e 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 9px 14px;
    border-radius: 6px 6px 0 0;
    margin-bottom: 0;
    letter-spacing: 0.2px;
    border-left: 4px solid var(--secondary-color, #e74c3c);
}

/* Number badge — red circle */
.sb-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--secondary-color, #e74c3c);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
@ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {   . c i n e m a - g r i d - c o n t e n t   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r   ! i m p o r t a n t ;   }   }  
 