/* ========================================
   OUTLOOK PREMIUM DESIGN SYSTEM
   Exact Match with Reference Image
   ======================================== */

.outlook-layout-premium {
    background: #fff;
    padding: 15px 0;
    font-family: var(--vr-font-primary);
    border-bottom: 1px solid #e0e0e0;
}

/* 1. Header Sections (RED BOXES) */
.outlook-section-header {
    border-bottom: 1px solid #eee;
    /* Thin light grey line instead of thick red */
    margin-bottom: 15px;
    display: flex;
}

.outlook-header-box {
    background-color: #ed1c1d;
    color: #fff !important;
    padding: 3px 12px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* 2. Headlines & Typography */
.outlook-title-hero {
    font-size: 32px;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 800;
    line-height: 1.25;
    color: #000;
    margin-bottom: 12px;
    /* 3-line limit */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.outlook-title-hero a,
.outlook-title-small a,
.outlook-title-detail a,
.outlook-title-list-top a,
.outlook-title-link a {
    color: #1e293b !important;
    text-decoration: none;
    transition: color 0.2s;
}

.outlook-title-hero a:hover,
.outlook-title-small a:hover,
.outlook-title-detail a:hover,
.outlook-title-list-top a:hover,
.outlook-title-link a:hover {
    color: #ed1c1d;
}

.outlook-title-small {
    font-size: 16px !important;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 700;
    line-height: 1.4;
    margin: 8px 0;
    /* 3-line limit */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.outlook-title-detail {
    font-size: 19px;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 700;
    line-height: 1.35;
    margin: 5px 0 10px 0;
    /* 3-line limit */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.outlook-title-list-top {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    /* 4-line limit for big posts in LATEST NEWS */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



.outlook-title-link {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    /* 3-line limit */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.outlook-lede {
    font-size: 15px;
    font-family: var(--vr-font-primary) !important;
    line-height: 1.6;
    color: #64748b !important;
    margin-bottom: 15px;
}

.outlook-summary-small {
    font-size: 13px;
    color: #64748b !important;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* 2.5 Separators */
.outlook-sep-heavy {
    border-bottom: 2px solid #000;
    width: 100%;
}

.outlook-sep-light {
    border-bottom: 1px solid #eee;
    width: 100%;
}

/* 3. Metadata (Authors, Badges) */
.outlook-author-meta {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outlook-author-meta-center {
    font-size: 11px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-red {
    background-color: #ed1c1d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    text-transform: uppercase;
    display: inline-block;
}

.badge-red-large {
    background-color: #ed1c1d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    text-transform: uppercase;
    display: inline-block;
}

/* 4. Layout & Borders */
.outlook-col-border-right {
    border-right: 1px solid #e5e5e5;
}

.outlook-col-border-left {
    border-left: 1px solid #e5e5e5;
}

.outlook-sep {
    border-top: 1px solid #f0f0f0;
    margin: 20px 0;
    opacity: 0.8;
}

.outlook-sep-heavy {
    border-top: 1px solid #ddd;
    margin: 10px 0 30px 0;
}

.outlook-shadow-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.outlook-list-link-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
}

/* Allow border on last child as requested */
.outlook-list-link-item:last-child {
    border-bottom: 1px solid #f0f0f0;
}

/* 6. Horizontal Post Strip (New requested style) */
.outlook-horizontal-post {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Allow border on last child as requested */
.outlook-horizontal-post:last-child {
    border-bottom: 1px solid #f0f0f0;
}

.outlook-horizontal-post .post-title-red {
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.3;
    margin-bottom: 12px;
    font-family: var(--vr-font-secondary);
}

.outlook-horizontal-post .post-title-red a {
    color: #cc3333;
    text-decoration: none;
    transition: color 0.2s;
}

.outlook-horizontal-post .post-title-red a:hover {
    color: #000;
}

.outlook-horizontal-post .post-summary {
    font-size: 16px;
    color: #64748b !important;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 90%;
}

.outlook-horizontal-post .post-author-bold {
    font-size: 12px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.outlook-horizontal-post .post-author-bold span {
    font-weight: 400;
    color: #888;
    margin-right: 6px;
    letter-spacing: normal;
}

.outlook-horizontal-post .post-image-right {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.outlook-img-mid {
    height: 180px;
    object-fit: cover;
    border-radius: 2px;
}

/* 7. Advertisement Adjustments */
.outlook-ad-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ad-placeholder-box {
    width: 300px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

.ad-placeholder-box img {
    max-width: 100%;
    height: auto;
}

.bn-content {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    clear: both;
}

/* Force dimensions on inner ad containers without background */
.bn-content .bn-inner {
    display: inline-block !important;
    text-align: center !important;
    margin: 0 auto;
    max-width: 100%;
}

.bn-content .bn-inner img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    height: auto !important;
}

/* Specific adjustment for Desktop Leaderboard/Banner slots */
.container-bn-header .bn-inner,
.col-bn-ds .bn-inner {
    max-width: 1320px;
    /* Match section width */
    min-height: 90px;
}

/* Sidebar Specific */
.bn-sidebar-content .bn-inner {
    min-height: 250px;
}

/* Enforce Strict Ad Visibility (Desktop vs Mobile) */
/* Optimized for Google Adsense - Avoids availableWidth=0 error */

.col-bn-ds,
.col-bn-mb {
    width: 100% !important;
    overflow: hidden !important;
}

/* Enforce Strict Ad Visibility (Desktop vs Mobile) */
.col-bn-ds {
    display: block !important;
}

.col-bn-mb {
    display: none !important;
}

@media (max-width: 991.98px) {
    .col-bn-ds {
        display: none !important;
    }

    .col-bn-mb {
        display: block !important;
    }

    /* 5. Responsive */

    .outlook-col-border-right,
    .outlook-col-border-left {
        border: none;
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
    }

    .outlook-title-hero {
        font-size: 24px;
    }

    /* ============================================================
       UNIFIED MOBILE LIST VIEW SYSTEM (Fixes Conflicts & Clipping)
       ============================================================ */

    /* 1. Mobile List Container - Clean Reset */
    .outlook-mobile-list,
    .outlook-category-list-mobile,
    .outlook-center-list-mobile {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Standardize Header Box alignment */
    .outlook-mobile-list .outlook-section-header {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-bottom: 20px !important;
    }

    .outlook-category-list-mobile .col-6,
    .outlook-center-list-mobile .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 2. Standardize Item Row - Vertical Layout (Image Top, Title Below) */
    .outlook-mobile-list .outlook-item,
    .outlook-category-list-mobile .outlook-mid-post-card,
    .outlook-center-list-mobile .outlook-item {
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        border-bottom: none !important;
    }

    /* 3. Image on Top (Full Width) */
    .outlook-mobile-list .outlook-item .outlook-thumbnail,
    .outlook-category-list-mobile .outlook-mid-post-card .image-wrap,
    .outlook-center-list-mobile .outlook-item .outlook-thumbnail {
        width: 100% !important;
        min-width: 100% !important;
        margin: 0 0 12px 0 !important;
        display: block !important;
    }

    .outlook-mobile-list .outlook-item .outlook-thumbnail img,
    .outlook-category-list-mobile .outlook-mid-post-card .image-wrap img,
    .outlook-center-list-mobile .outlook-item .outlook-thumbnail img {
        height: auto !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 0 !important;
    }

    /* 4. Content Area Below Image */
    .outlook-mobile-list .outlook-item .content,
    .outlook-category-list-mobile .outlook-mid-post-card .content,
    .outlook-center-list-mobile .outlook-item .content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }

    /* 5. Exception: முக்கிய செய்திகள் - Horizontal List Layout */
    .outlook-mobile-list .outlook-item {
        flex-direction: row !important;
        border-bottom: 1px solid #f1f5f9 !important;
        padding-bottom: 12px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-bottom: 15px !important;
    }

    .outlook-mobile-list .outlook-item .outlook-thumbnail {
        width: 130px !important;
        min-width: 130px !important;
        margin: 0 0 0 12px !important;
        order: 2 !important;
    }

    .outlook-mobile-list .outlook-item .outlook-thumbnail img {
        height: 90px !important;
        width: 100% !important;
    }

    .outlook-mobile-list .outlook-item .content {
        order: 1 !important;
    }

    /* 5. Title Fixes (Resolve Clipping) */
    .outlook-mobile-list .outlook-item .outlook-title-small,
    .outlook-category-list-mobile .outlook-mid-post-card .outlook-mid-title,
    .outlook-center-list-mobile .outlook-item .outlook-title-small {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
        font-weight: 700 !important;
        color: #1a202c !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        height: auto !important;
        max-height: none !important;
        /* Remove restrictive height to stop clipping */
    }

    /* 6. Hide non-essential elements in list mode */
    .outlook-mobile-list .outlook-category-tag,
    .outlook-category-list-mobile .outlook-mid-summary,
    .outlook-category-list-mobile .outlook-credit,
    .outlook-center-list-mobile .outlook-category-tag,
    .outlook-center-list-mobile .outlook-lede,
    .outlook-mobile-list .outlook-sep {
        display: none !important;
    }

    /* 7. Dark Mode Overrides */
    .dark-mode .outlook-mobile-list .outlook-item,
    .dark-mode .outlook-category-list-mobile .outlook-mid-post-card,
    .dark-mode .outlook-center-list-mobile .outlook-item {
        border-color: #334155 !important;
    }

    .dark-mode .outlook-mobile-list .outlook-item .outlook-title-small,
    .dark-mode .outlook-category-list-mobile .outlook-mid-post-card .outlook-mid-title,
    .dark-mode .outlook-center-list-mobile .outlook-item .outlook-title-small {
        color: #f1f5f9 !important;
    }
}

/* Dark Mode Support */
.dark-mode .outlook-layout-premium {
    background: #1a1a1a;
}

.dark-mode .outlook-title-hero a,
.dark-mode .outlook-title-small a,
.dark-mode .outlook-title-detail a,
.dark-mode .outlook-title-list-top a,
.dark-mode .outlook-title-link a {
    color: #e0e0e0;
}

.dark-mode .outlook-lede,
.dark-mode .outlook-summary-small {
    color: #aaa;
}

.dark-mode .outlook-col-border-right,
.dark-mode .outlook-col-border-left,
.dark-mode .outlook-sep,
.dark-mode .outlook-sep-heavy,
.dark-mode .outlook-list-link-item {
    border-color: #333;
}

@media (min-width: 1200px) {

    .h3,
    h3 {
        font-size: 20px !important;
        font-weight: 800;
    }
}

/* 8. Category Block Type 4 Redesign (Compact Mid-Size Grid) */
.outlook-category-section-new {
    margin-bottom: 15px !important;
}

.section {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.outlook-category-header-clean {
    border-top: 2px solid #000;
    padding-top: 12px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.outlook-category-header-clean .title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin: 0 !important;
    letter-spacing: 0.2px;
}

.outlook-category-header-clean .title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.outlook-category-header-clean .title a:hover {
    color: #ed1c1d;
}

.outlook-mid-post-card {
    margin-bottom: 30px;
}

.outlook-mid-post-card .image-wrap {
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 2px;
}

.outlook-mid-post-card .image-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.outlook-mid-post-card:hover .image-wrap img {
    transform: scale(1.05);
}

.outlook-mid-title {
    font-size: 16px !important;
    font-weight: 800;
    line-height: 1.35;
    color: #000 !important;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.outlook-mid-title a {
    color: #1e293b !important;
    text-decoration: none;
}

.outlook-mid-title a:hover {
    color: #ed1c1d !important;
}

.outlook-mid-summary {
    font-size: 13.5px;
    line-height: 1.55;
    color: #64748b !important;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .outlook-mid-post-card .image-wrap img {
        height: 150px;
    }

    /* Section styling for mobile */
    .outlook-category-section-new,
    .section-impact-grid {
        border-top: none !important;
        padding-top: 15px !important;
        margin-top: 15px !important;
        margin-bottom: 25px !important;
    }

    /* Category header on mobile - Match reference image exactly */
    .outlook-category-header-clean {
        border-top: 2px solid #000 !important;
        border-bottom: none !important;
        padding-top: 12px !important;
        padding-bottom: 0 !important;
        margin-bottom: 25px !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    .outlook-category-header-clean .title {
        background-color: transparent !important;
        color: #000 !important;
        padding: 0 !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        margin: 0 !important;
        letter-spacing: 0.2px !important;
    }

    .outlook-category-header-clean .title a {
        color: #000 !important;
    }
}



.outlook-category-section-new .outlook-mid-summary {
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    font-size: 13px !important;
}

.outlook-category-section-new .outlook-credit {
    display: none !important;
}


/* 9. Category Block Type 3 Redesign (Premium Impact Grid) */
.outlook-premium-grid-section {
    margin-bottom: 15px !important;
}

.outlook-category-header-clean .updates-link {
    font-size: 13px;
    font-weight: 600;
    color: #ed1c1d;
    text-decoration: none;
}

.outlook-category-header-clean .updates-link:hover {
    text-decoration: underline;
}

/* Big Post Styling */
.outlook-premium-big-post {
    margin-bottom: 30px;
}

.outlook-premium-big-post .image-wrap {
    margin-bottom: 20px;
}

.outlook-premium-big-post .image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.outlook-premium-big-title {
    font-size: 24px !important;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 800;
    line-height: 1.25;
    color: #000;
    margin-bottom: 12px;
}

.outlook-premium-big-title a {
    color: #1e293b !important;
    text-decoration: none;
}

.outlook-premium-big-title a:hover {
    color: #ed1c1d;
}

.outlook-premium-lede {
    font-size: 15px;
    font-family: var(--vr-font-primary) !important;
    line-height: 1.6;
    color: #64748b !important;
    margin-bottom: 15px;
}

/* Small Post Styling for Grid */
.outlook-premium-grid-post {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.col-6:nth-last-child(-n+2) .outlook-premium-grid-post {
    border-bottom: none;
    padding-bottom: 0;
}

.outlook-premium-grid-post .image-wrap {
    margin-bottom: 8px;
}

.outlook-premium-grid-post .image-wrap img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.outlook-premium-grid-title {
    font-size: 14px !important;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.outlook-premium-grid-title a {
    color: #1e293b !important;
    text-decoration: none;
}

.outlook-premium-grid-title a:hover {
    color: #ed1c1d;
}

/* Styling for Meta (Time | Category) */
.outlook-credit {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    display: flex;
    align-items: center;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.outlook-credit .sep {
    margin: 0 10px;
    color: #444;
    font-weight: 300;
}

.outlook-credit .cat {
    color: #000 !important;
    text-decoration: none;
    font-weight: 500;
}

.outlook-credit .cat:hover {
    text-decoration: underline;
}

/* Sidebar Styling */
.outlook-sidebar-compact {
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.outlook-sidebar-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.outlook-sidebar-item:last-child {
    border-bottom: none;
}

.outlook-sidebar-title {
    font-size: 14px !important;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
}

.outlook-sidebar-title a {
    color: #1e293b !important;
    text-decoration: none;
}

.outlook-sidebar-title a:hover {
    color: #ed1c1d;
}

/* 9b. Category Block Type 3 Redesign (Circular Image Style) */
.outlook-premium-type-3-section {
    padding: 15px 0 !important;
    background: #fff;
}

.outlook-type-3-card {
    background: #fff6f6 !important;
    /* Subtle pink background */
    padding: 30px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin-bottom: 25px;
    border: 1px solid #f9ecec;
}

.type-3-content {
    flex: 1;
    padding-right: 20px;
}

.type-3-cat {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    font-family: var(--vr-font-primary);
}

.type-3-title {
    font-size: 16px !important;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.type-3-title a {
    color: #b21e1e !important;
    text-decoration: none;
    transition: color 0.2s;
}

.type-3-title a:hover {
    color: #000;
}

.type-3-image {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
}

.type-3-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #eee;
}

@media (max-width: 768px) {
    .outlook-type-3-card {
        padding: 20px;
        flex-direction: column-reverse;
        text-align: center;
    }

    .type-3-content {
        padding-right: 0;
        margin-top: 15px;
    }

    .type-3-title {
        font-size: 18px !important;
    }

    .type-3-image {
        width: 100px;
        height: 100px;
    }
}

/* 10. Category Block Type 5 Redesign (Premium White Carousel) */
.section-cat-slider {
    background: #fff;
    padding: 15px 0 20px 0 !important;
}

.outlook-slider-card {
    background: transparent;
    border: none;
    overflow: hidden;
    margin: 0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.outlook-slider-image {
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 12px;
}

.outlook-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-overlay-icon {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    width: 26px !important;
    height: 26px !important;
    background: #ed1c1d !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
    z-index: 5 !important;
}

/* Custom CSS Gallery Icon */
.slider-overlay-icon::before {
    content: '' !important;
    display: block !important;
    width: 12px !important;
    height: 9px !important;
    border: 1.5px solid #fff !important;
    border-radius: 1px !important;
    position: relative !important;
}

.slider-overlay-icon::after {
    content: '' !important;
    position: absolute !important;
    width: 3px !important;
    height: 3px !important;
    background: #fff !important;
    border-radius: 50% !important;
    top: 9px !important;
    right: 9px !important;
}

.slider-overlay-icon i {
    display: none !important;
    /* Hide old icon */
}

.outlook-slider-content {
    padding: 0;
    background: transparent;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.slider-cat-label {
    margin-bottom: 6px;
}

.slider-cat-label a {
    font-size: 13px;
    font-weight: 800;
    color: #0056b3 !important;
    text-decoration: none;
    text-transform: capitalize;
}

.outlook-slider-title {
    font-size: 16px !important;
    font-family: var(--vr-font-primary) !important;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.outlook-slider-title a {
    color: #1e293b !important;
    text-decoration: none;
}

.outlook-slider-title a:hover {
    color: #ed1c1d !important;
}

/* Custom Slider Nav */
.nav-sm-buttons {
    display: flex !important;
    gap: 8px;
}

.nav-sm-buttons button {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #eee !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.nav-sm-buttons button:hover {
    background: #ed1c1d !important;
    color: #fff !important;
    border-color: #ed1c1d !important;
}

/* 11. Category Block Type 6 Redesign (Impact Grid) */
.section-impact-grid {
    padding: 15px 0 !important;
    background: #fff;
}

.outlook-impact-card {
    background: #fff;
    transition: all 0.3s ease;
}

.outlook-impact-card .image-wrap {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 12px;
}

.outlook-impact-card .image-wrap a {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

.outlook-impact-card .image-wrap img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
}

.outlook-impact-card .hover-overlay {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 50px !important;
    height: 50px !important;
    background: #ed1c1d !important;
    /* solid red */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.95 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    z-index: 10 !important;
}

/* White Play Arrow Triangle */
.outlook-impact-card .hover-overlay::after {
    content: '' !important;
    display: block !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 10px solid transparent !important;
    border-bottom: 10px solid transparent !important;
    border-left: 15px solid #fff !important;
    margin-left: 5px !important;
}

.outlook-impact-card:hover .hover-overlay {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    background: #000 !important;
}

.outlook-impact-card .hover-overlay i {
    display: none !important;
}

.outlook-impact-title {
    font-size: 16px !important;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    color: #1e293b !important;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.outlook-impact-card .outlook-mid-summary {
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
}

.outlook-impact-title a {
    color: #000;
    text-decoration: none;
}

.outlook-impact-title a:hover {
    color: #ed1c1d;
}

@media (max-width: 768px) {
    .outlook-impact-title {
        font-size: 16px !important;
        line-height: 1.35 !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        max-height: 4.1em !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
}

/* 12. Premium List Styles for Type 1 & 2 */
.outlook-list-item-clean {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
}

.outlook-list-item-clean:last-child {
    border-bottom: none;
}

.outlook-list-title-clean {
    font-size: 16px !important;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.outlook-list-title-clean a {
    color: #1e293b !important;
    text-decoration: none;
}

.outlook-list-title-clean a:hover {
    color: #ed1c1d;
}

/* 13. Fox-Style Grid (Type 1) */
.outlook-fox-grid-post {
    margin-bottom: 30px;
}

.outlook-fox-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 15px;
}

.outlook-fox-image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.outlook-fox-card:hover .outlook-fox-image-wrap img {
    transform: scale(1.05);
}

.outlook-fox-overlay-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #1a365d;
    /* Dark Navy */
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.outlook-fox-title {
    font-size: 18px !important;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 800 !important;
    line-height: 1.3;
    color: #003366 !important;
    /* Deep Blue-Black */
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.outlook-fox-title a {
    color: inherit;
    text-decoration: none;
}

.outlook-fox-title a:hover {
    color: #ed1c1d;
}

.outlook-fox-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #777;
    font-weight: 600;
}

.outlook-fox-meta i {
    font-size: 13px;
    margin-right: 4px;
    color: #999;
}

/* 14. Category Block Type 1 Redesign (Image Style Grid) */
.outlook-type-1-row {
    margin-top: 15px !important;
}

.outlook-type-1-section {
    margin-bottom: 15px !important;
    padding-bottom: 0 !important;
}

.outlook-type-1-big-post {
    margin-bottom: 15px !important;
}

.outlook-type-1-big-post .image-wrap {
    margin-bottom: 12px !important;
}

.outlook-type-1-big-post .image-wrap img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    border-radius: 2px !important;
}

/* Category Label - Force Blue */
.outlook-type-1-section .cat-label {
    display: block !important;
    color: #337ab7 !important;
    /* Primary Blue */
    font-weight: 700 !important;
    font-size: 14px !important;
    margin-bottom: 6px !important;
    text-transform: capitalize !important;
    text-decoration: none !important;
}

.outlook-type-1-section .title {
    font-family: var(--vr-font-secondary) !important;
}

.outlook-type-1-big-post .title {
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin: 0 !important;
}

.outlook-type-1-big-post .title a {
    color: #1e293b !important;
    text-decoration: none !important;
}

.outlook-type-1-big-post .title a:hover {
    color: #ed1c1d !important;
}

/* Small Post Styling - FORCE FLEX */
.outlook-type-1-small-col {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.outlook-type-1-small-post {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding-bottom: 18px !important;
    margin-bottom: 18px !important;
    border-bottom: 1px solid #eee !important;
    min-height: 90px !important;
    width: 100% !important;
}

.outlook-type-1-small-post .content {
    flex: 1 !important;
    padding-right: 15px !important;
    overflow: hidden !important;
}

.outlook-type-1-small-post .title {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    color: #1e293b !important;
}

.outlook-type-1-small-post .title a {
    color: #000 !important;
    text-decoration: none !important;
}

.outlook-type-1-small-post .title a:hover {
    color: #ed1c1d !important;
}

.outlook-type-1-small-post .image-wrap {
    width: 130px !important;
    height: 85px !important;
    flex-shrink: 0 !important;
}

.outlook-type-1-small-post .image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 2px !important;
}

@media (max-width: 991px) {
    .outlook-type-1-small-post .image-wrap {
        width: 100px !important;
        height: 65px !important;
    }
}

@media (max-width: 768px) {
    .outlook-type-1-big-post .image-wrap img {
        height: 220px !important;
    }
}

/* 15. Trending Posts Section (Numerical Grid) - HOMEPAGE ONLY */
.outlook-trending-section {
    padding: 20px 0 40px 0;
    background: #fff;
}

.trending-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.trending-header .title {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin: 0 15px 0 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.trending-header .line {
    flex: 1;
    height: 2px;
    background: #000;
}

.outlook-trending-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: none;
}

.trending-item {
    display: flex;
    padding: 10px;
    align-items: flex-start;
    transition: background 0.2s;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.trending-item:nth-child(3n) {
    border-right: none;
}

.trending-item:nth-child(n+4) {
    border-bottom: none;
}

.trending-item:hover {
    background: #f9f9f9;
}

.trending-item .number {
    font-size: 32px;
    font-weight: 900;
    color: #e0e0e0;
    font-style: italic;
    margin-right: 15px;
    line-height: 1;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.trending-item .content {
    flex: 1;
}

.trending-item .title {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: #1e293b !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-item .title a {
    color: inherit !important;
    text-decoration: none !important;
}

.trending-item .title a:hover {
    color: #ed1c1d !important;
}

@media (max-width: 991px) {
    .outlook-trending-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .trending-item:nth-child(3n) {
        border-right: 1px solid #f0f0f0;
    }

    .trending-item:nth-child(2n) {
        border-right: none;
    }

    .trending-item:nth-child(n+4) {
        border-bottom: 1px solid #f0f0f0;
    }

    .trending-item:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .outlook-trending-row {
        grid-template-columns: 1fr;
    }

    .trending-item {
        border-right: none !important;
    }

    .trending-item:last-child {
        border-bottom: none !important;
    }
}

/* 15. Recommended Posts Section (Bottom) */
.section-recommended {
    padding: 25px 0;
    background: #fff;
    margin-bottom: 20px;
}

.recommended-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recommended-item .number {
    font-size: 28px;
    font-weight: 800;
    color: #ed1c1d;
    /* Premium Red */
    line-height: 1;
    min-width: 25px;
}

.recommended-item .image-wrap {
    width: 80px;
    flex-shrink: 0;
    height: 55px;
    overflow: hidden;
}

.recommended-item .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.recommended-item .content {
    flex: 1;
}

.recommended-item .title {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommended-item .title a {
    color: #1e293b !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.recommended-item .title a:hover {
    color: #ed1c1d !important;
}

@media (max-width: 991px) {
    .recommended-item .number {
        font-size: 24px;
    }

    .recommended-item .image-wrap {
        width: 70px;
        height: 48px;
    }
}

/* 16. Mobile Optimizations - Reduce Space & Keep Multi-Column Layout */
@media (max-width: 767px) {
    .section {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .outlook-category-section-new,
    .outlook-premium-grid-section,
    .section-cat-slider,
    .section-impact-grid,
    .outlook-type-1-section,
    .section-recommended,
    .container-bn {
        margin-bottom: 20px !important;
    }

    /* 'Separate' styling for Cinema Gallery Slider on Mobile - Added Side Space */
    .section-cat-slider {
        background: #f1f5f9 !important;
        padding: 20px 0 10px 0 !important;
        margin-left: 5px !important;
        margin-right: 5px !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 8px !important;
        height: auto !important;
    }

    .section-cat-slider .container-xl {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .outlook-category-header-clean {
        border-top: 2px solid #000 !important;
        padding-top: 12px !important;
        margin-bottom: 25px !important;
        display: flex !important;
        justify-content: space-between !important;
        border-bottom: none !important;
    }

    .category-slider-container,
    .slider-row {
        margin-bottom: 0 !important;
        height: auto !important;
    }

    .outlook-slider-card {
        height: auto !important;
        /* Override global 100% height */
    }

    /* Force 2nd-column layout on Static Grid */
    .section-impact-grid .row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .section-impact-grid .col-md-3 {
        width: 50% !important;
        flex: 0 0 50% !important;
        padding: 0 5px !important;
        margin-bottom: 15px !important;
    }

    /* Horizontal Slider Fix - 2 Items visibility */
    .slick-track {
        display: flex !important;
        flex-wrap: nowrap !important;
    }

    .slick-slide {
        width: 175px !important;
        padding: 0 6px !important;
        margin-bottom: 0 !important;
    }

    .slick-slide>div {
        width: 100% !important;
    }

    /* Unified Image Styling for Mobile Grid */
    .outlook-slider-image,
    .outlook-impact-card .image-wrap,
    .slick-slide .outlook-slider-image {
        height: 105px !important;
        margin-bottom: 10px !important;
        border-radius: 0 !important;
        overflow: hidden !important;
        background: #fff;
    }

    .outlook-slider-image img,
    .outlook-impact-card .image-wrap img,
    .slick-slide img {
        height: 105px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    /* Reduce space for Top Section Big Post & Small Posts */
    .outlook-hero-section {
        margin-bottom: 20px !important;
        padding-bottom: 15px !important;
    }

    .outlook-hero-thumbnail {
        margin-bottom: 15px !important;
    }

    .outlook-lede {
        margin-bottom: 10px !important;
    }

    .outlook-main-row .mt-2 {
        margin-top: 5px !important;
    }

    .outlook-item {
        margin-bottom: 15px !important;
    }

    .outlook-thumbnail {
        margin-bottom: 8px !important;
    }

    /* Ensure titles are visible and aligned */
    .outlook-slider-title,
    .outlook-impact-title,
    .outlook-title-small {
        font-size: 13px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        height: 52px !important;
    }

    .outlook-img-mid {
        height: 105px !important;
        margin-bottom: 8px !important;
    }

    .outlook-slider-content,
    .outlook-impact-card {
        padding: 0 !important;
        background: transparent !important;
    }

    /* Scale Overlay Icons */
    .slider-overlay-icon {
        width: 20px !important;
        height: 20px !important;
        bottom: 5px !important;
        left: 5px !important;
        z-index: 10 !important;
    }

    .outlook-impact-card .hover-overlay {
        width: 30px !important;
        height: 30px !important;
        opacity: 1 !important;
    }

    .outlook-impact-card .hover-overlay::after {
        border-top-width: 5px !important;
        border-bottom-width: 5px !important;
        border-left-width: 8px !important;
        margin-left: 2px !important;
    }

    .bn-content {
        padding: 5px 0 !important;
        text-align: center !important;
    }
}

/* 17. Premium Footer Redesign */
#footer {
    background: #0f172a !important;
    /* Deep dark blue-black */
    color: #cbd5e1 !important;
    padding-top: 25px !important;
    border-top: 4px solid #ed1c1d !important;
}

#footer .footer-inner {
    padding-bottom: 50px !important;
}

#footer .widget-title {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px !important;
    position: relative;
    padding-bottom: 10px;
}

#footer .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ed1c1d;
}

#footer .footer-about {
    color: #94a3b8 !important;
    line-height: 1.8;
    font-size: 15px;
    margin: 0 auto 30px auto;
    max-width: 700px;
}

#footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

#footer .footer-logo img {
    max-height: 85px;
    width: auto;
    display: block;
    margin: 0 auto;
}

#footer .footer-social-links ul {
    display: flex;
    gap: 12px;
    padding: 0;
    list-style: none;
}

#footer .footer-social-links ul li a {
    width: 36px;
    height: 36px;
    background: #1e293b;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#footer .footer-social-links ul li a:hover {
    background: #ed1c1d;
    transform: translateY(-3px);
}

#footer .footer-categories-horizontal {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 25px;
}

#footer .footer-categories-horizontal li a {
    color: #94a3b8 !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s;
}

#footer .footer-categories-horizontal li a:hover {
    color: #ed1c1d !important;
}

#footer .footer-categories li a i {
    margin-right: 8px;
    font-size: 10px;
}

#footer .footer-posts .post-item-small {
    padding-bottom: 15px !important;
    margin-bottom: 15px !important;
    border-bottom: 1px solid #1e293b !important;
}

#footer .footer-posts .post-item-small:last-child {
    border-bottom: none !important;
}

#footer .footer-posts .post-item-small .title a {
    color: #e2e8f0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

#footer .footer-posts .post-item-small .title a:hover {
    color: #ed1c1d !important;
}

#footer .footer-copyright {
    background: #020617 !important;
    padding: 20px 0 !important;
    border-top: 1px solid #1e293b;
}

#footer .footer-copyright .copyright {
    color: #64748b !important;
    font-size: 13px;
}

#footer .nav-footer ul li a {
    color: #64748b !important;
    font-size: 13px;
    text-decoration: none;
}

#footer .nav-footer ul li a:hover {
    color: #fff !important;
}

@media (max-width: 767px) {
    #footer {
        padding-top: 40px !important;
        text-align: center;
    }

    #footer .widget-title::after,
    #footer .footer-widget.text-end .widget-title::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    #footer .footer-social-links ul {
        justify-content: center;
    }

    #footer .footer-categories {
        grid-template-columns: 1fr;
    }

    #footer .footer-copyright {
        text-align: center;
    }

    #footer .nav-footer {
        text-align: center !important;
        margin-top: 10px;
    }

    #footer .nav-footer ul {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* 18. Premium Post Detail Styles */
.outlook-post-title-main {
    font-size: 32px !important;
    font-family: var(--vr-font-secondary) !important;
    font-weight: 800 !important;
    line-height: 1.25;
    color: #0f172a !important;
    margin-bottom: 25px !important;
}

.outlook-post-summary-wrap {
    font-size: 17px;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    border-left: 4px solid #ed1c1d;
    padding-left: 20px;
    margin-bottom: 30px;
}

.outlook-post-meta-premium {
    font-family: var(--vr-font-primary);
}

.outlook-post-meta-premium .meta-item {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
}

.outlook-post-meta-premium .meta-item i {
    margin-right: 6px;
    font-size: 16px;
    color: #ed1c1d;
}

.outlook-post-meta-premium .rounded-circle-meta {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
}

.outlook-post-meta-premium .name {
    font-weight: 700;
    color: #0f172a;
}

.post-text {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #334155 !important;
}

.post-text p {
    margin-bottom: 25px !important;
}

.post-image img {
    border-radius: 4px;
    margin-bottom: 10px;
}

.img-description {
    font-size: 13px;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.outlook-author-box-premium {
    border-radius: 2px;
}

.rounded-circle-author {
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-social-premium a {
    width: 30px;
    height: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.author-social-premium a:hover {
    background: #ed1c1d;
    color: #fff !important;
}

.outlook-breadcrumb {
    background: transparent !important;
    padding: 10px 0 !important;
    margin-bottom: 0 !important;
}

.outlook-breadcrumb .breadcrumb-item a {
    color: #64748b;
    font-size: 13px;
    text-decoration: none;
}

.outlook-breadcrumb .breadcrumb-item.active {
    color: #0f172a;
    font-weight: 700;
}

/* .section-related-posts .section-title .title {
    font-size: 20px !important;
    border-bottom: 2px solid #ed1c1d;
    display: inline-block;
} */

/* Mobile Adjustments for Post Detail */
@media (max-width: 767px) {
    .outlook-post-title-main {
        font-size: 24px !important;
    }

    .outlook-post-summary-wrap {
        font-size: 15px;
    }

    .outlook-post-meta-premium {
        flex-wrap: wrap;
        gap: 10px;
    }

    .outlook-post-meta-premium .ms-auto {
        width: 100%;
        margin-top: 15px;
        justify-content: center;
    }

    .outlook-author-box-premium {
        flex-direction: column;
        text-align: center;
    }

    .outlook-author-box-premium .ms-4 {
        margin-left: 0 !important;
        margin-top: 15px;
    }

    .author-social-premium {
        justify-content: center;
    }
}

/* 19. Post Share Buttons Premium */
.post-share-top .btn-share {
    margin-right: 8px;
    display: inline-block;
}

.post-share-top .btn-share a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    font-size: 14px;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.post-share-top .btn-share a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.post-share-top .color-facebook {
    background-color: #3b5998;
}

.post-share-top .color-twitter {
    background-color: #1da1f2;
}

.post-share-top .color-linkedin {
    background-color: #0077b5;
}

.post-share-top .color-whatsapp {
    background-color: #25d366;
}

.post-share-top .color-pinterest {
    background-color: #bd081c;
}

.post-share-top .btn-inner a {
    background: #f1f5f9 !important;
    color: #64748b !important;
}

.outlook-badge-premium {
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    padding: 5px 15px !important;
    border-radius: 0 !important;
    letter-spacing: 0.5px;
}

/* 20. Post Details Feedback & Premium Layout */
.section-comments .nav-tabs {
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 30px;
}

.section-comments .nav-tabs .nav-link {
    border: none;
    font-weight: 700;
    color: #64748b;
    padding: 12px 25px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
}

.section-comments .nav-tabs .nav-link.active {
    color: #ed1c1d;
    background: transparent;
}

.section-comments .nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ed1c1d;
}

.outlook-post-meta-premium .item-meta-comment span {
    color: #64748b;
    font-size: 14px;
}

.outlook-post-meta-premium .item-meta-comment i {
    color: #ed1c1d;
}

/* Sidebar Reset for Details */
#postDetailsPage .outlook-sidebar-compact {
    border-left: none;
    padding-left: 0;
}

#postDetailsPage .sidebar-widget-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
    margin-bottom: 20px;
    display: inline-block;
}

/* 21. Luxury Editorial Enhancements */
#postDetailsPage {
    background: #fff;
    padding-top: 30px !important;
}

/* Breadcrumb Refinement */
.outlook-breadcrumb {
    margin-bottom: 20px !important;
}

.outlook-breadcrumb .breadcrumb-item,
.outlook-breadcrumb .breadcrumb-item a {
    text-transform: uppercase;
    font-size: 11px !important;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Title & Summary */
.outlook-post-title-main {
    font-size: 34px !important;
    letter-spacing: -0.5px;
    margin-bottom: 20px !important;
}

.outlook-post-summary-wrap {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.5;
    border-left: 0;
    padding-left: 0;
    margin-bottom: 35px;
    font-weight: 500;
    opacity: 0.9;
}

/* Metadata Bar */
.outlook-post-meta-premium {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
}

.outlook-post-meta-premium .meta-item.author span.name {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Body Text Luxury Spacing */
.post-text {
    font-size: 19px !important;
    line-height: 1.85 !important;
    color: #1a202c !important;
}

.post-text p {
    margin-bottom: 30px !important;
}

/* Sidebar Luxury Style */
.sidebar-widget-title {
    font-size: 18px !important;
    border-bottom: 3px solid #ed1c1d !important;
    padding-bottom: 5px;
    margin-bottom: 25px !important;
}

.post-item-small {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
}

.post-item-small:hover {
    opacity: 0.8;
}

.post-item-small .title {
    font-size: 15px !important;
    line-height: 1.4;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.post-item-small .post-meta .badge {
    font-size: 10px !important;
    text-transform: uppercase;
    padding: 2px 0;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: transparent !important;
    color: #ed1c1d !important;
}

/* Social Icon Hover */
.post-share-top .btn-share a {
    background: #f8fafc !important;
    color: #64748b !important;
    border: 1px solid #e2e8f0;
}

.post-share-top .btn-share a:hover {
    background: #ed1c1d !important;
    color: #fff !important;
    border-color: #ed1c1d;
}

/* 22. Editorial Polish for Post Detail */

/* News Ticker Luxury Update */
.section-newsticker {
    background: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 8px 0 !important;
}

.newsticker-title {
    background: #ed1c1d !important;
    padding: 2px 12px !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    border-radius: 0 !important;
}

.newsticker li a {
    font-weight: 600 !important;
    color: #1e293b !important;
    font-size: 13px !important;
}

.dark-mode .section-newsticker {
    background: #111 !important;
    border-color: #222 !important;
}

.dark-mode .newsticker li a {
    color: #cbd5e1 !important;
}

.dark-mode .newsticker-title {
    background: #ed1c1d !important;
    color: #fff !important;
}

/* Metadata & Social Row Alignment */
.outlook-post-meta-premium {
    flex-direction: column;
    align-items: flex-start !important;
    padding-bottom: 20px !important;
}

.outlook-post-meta-premium .author-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.outlook-post-meta-premium .date-row {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Sidebar Trending Stories Polish */
.sidebar-widget-title {
    font-family: var(--vr-font-secondary);
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #000;
    border-bottom: 2px solid #000 !important;
}

.post-item-small {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 15px 0 !important;
}

.post-item-small:last-child {
    border-bottom: none !important;
}

.post-item-small .title a {
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    color: #1a202c !important;
    transition: color 0.2s;
}

.post-item-small .title a:hover {
    color: #ed1c1d !important;
}

/* Join Us & Google News Buttons (Custom styling for the visible ones) */
.outlook-joint-btn {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 4px 15px;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 23. Luxury Edition Polish */

/* Elegant Metadata Refresh */
.outlook-post-meta-premium {
    border-top: none !important;
    padding-top: 0 !important;
}

.outlook-post-meta-premium .author-row {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.outlook-post-meta-premium .meta-item.author span.name {
    font-size: 11px !important;
    color: #64748b !important;
    letter-spacing: 1.5px !important;
    font-weight: 800 !important;
}

.outlook-post-meta-premium .date-row {
    padding-top: 10px;
    font-size: 11px !important;
    color: #94a3b8 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sidebar Follow Us Modernization */
.widget-social ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 !important;
}

.widget-social li {
    width: 100% !important;
    margin: 0 !important;
}

.widget-social li a {
    height: 40px !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.widget-social li a i {
    font-size: 16px !important;
    margin-right: 8px !important;
}

/* Premium Sidebar Titles */
.sidebar #header-trending-posts {
    border-bottom: 3px solid #ed1c1d !important;
}

/* Article Dropcap */
.post-text p:first-of-type::first-letter {
    float: left;
    font-size: 75px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    font-family: var(--vr-font-secondary);
    font-weight: 800;
    color: #0f172a;
}

/* Share Icons Refinement */
.post-share-top .btn-share a {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
    border: none !important;
    background: #f1f5f9 !important;
    color: #475569 !important;
}

.post-share-top .btn-share a:hover {
    background: #ed1c1d !important;
    color: #fff !important;
}

/* Small Post Sidebar Polish */
.post-item-small .image {
    width: 90px !important;
    height: 60px !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

.post-item-small .title {
    margin-top: 0 !important;
}

.post-item-small .title a {
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
}

/* 24. Signature Luxury Editorial System */

.signature-luxury-article {
    padding-top: 20px !important;
}

.luxury-serif-title,
.signature-luxury-article .clean-title {
    font-family: var(--vr-font-secondary) !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1.15;
    color: #0f172a !important;
    letter-spacing: -0.5px;
}

.luxury-summary,
.signature-luxury-article .clean-summary {
    font-size: 16px !important;
    line-height: 1.5;
    color: #475569;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .signature-luxury-article .clean-title {
        font-size: 24px !important;
    }
}

.luxury-meta-bar {
    border-color: #f1f5f9 !important;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

/* Luxury Article Text Body */
.post-text {
    font-family: 'PT Serif', serif !important;
    font-size: 20px !important;
    line-height: 1.85 !important;
    color: #1e293b !important;
    max-width: 100%;
}

.post-text p {
    margin-bottom: 32px !important;
}

/* Sidebar Signature Polish */
.sidebar-widget {
    background: transparent !important;
    border: none !important;
    margin-bottom: 40px !important;
}

.sidebar-widget .widget-head {
    border-bottom: 2px solid #0f172a !important;
    margin-bottom: 20px !important;
    padding-bottom: 5px !important;
}

.sidebar-widget .widget-head .title {
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0f172a !important;
}

.post-item-small {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.post-item-small:last-child {
    border-bottom: none !important;
}

.post-item-small .image {
    flex-shrink: 0;
    width: 100px !important;
    height: 70px !important;
    border-radius: 4px !important;
}

.post-item-small .title a {
    font-family: 'PT Serif', serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #0f172a !important;
}

/* Follow Us Luxury Grid */
.widget-follow .item a {
    background: #f8fafc !important;
    color: #64748b !important;
    border: 1px solid #e2e8f0 !important;
    height: 45px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.widget-follow .item a:hover {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
}

/* Dropcap Polish */
.post-text p:first-of-type::first-letter {
    font-size: 85px;
    line-height: 70px;
    color: #ed1c1d;
}

/* Inline Share Icons Minimal */
.luxury-share-inline .btn-share {
    margin-left: 10px;
}

.luxury-share-inline .btn-share a {
    width: 32px !important;
    height: 32px !important;
    background: transparent !important;
    color: #94a3b8 !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 14px !important;
    border-radius: 50% !important;
}

.luxury-share-inline .btn-share a:hover {
    color: #ed1c1d !important;
    border-color: #ed1c1d !important;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .luxury-serif-title {
        font-size: 24px !important;
    }

    .luxury-meta-bar {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
}

/* 25. Final Luxury Polish */

/* .section-related-posts .title {
    font-family: 'PT Serif', serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #ed1c1d !important;
    display: inline-block;
    margin-bottom: 25px !important;
} */

.post-item .title a {
    font-family: 'PT Serif', serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #0f172a !important;
}

.small-post-meta,
.small-post-meta a {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #94a3b8 !important;
    font-weight: 600 !important;
}

/* Reactions Premium Style */
.emoji-reactions-container {
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    padding: 30px !important;
}

.title-reactions {
    font-family: 'PT Serif', serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-align: center;
    margin-bottom: 25px !important;
}

/* Comment System Refinement */
.section-comments .nav-tabs {
    border-bottom: 3px solid #0f172a !important;
}

.section-comments .nav-tabs .nav-link.active {
    background: #0f172a !important;
    color: #fff !important;
    border-radius: 4px 4px 0 0 !important;
}

/* Floating Share (Side) - Optional but nice if we just refine the inline share */
.luxury-share-inline {
    gap: 8px;
    display: flex;
}

.luxury-share-inline .btn-share a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Post Next/Prev Section */
.post-next-prev {
    border-top: 1px solid #f1f5f9 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 20px 0 !important;
}

.post-next-prev a {
    font-family: 'PT Serif', serif !important;
    font-weight: 700 !important;
}

/* 26. Follow Us Post Section Styling */
.luxury-follow-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #4b5563 !important;
    border-color: #e5e7eb !important;
    background: #fff;
    white-space: nowrap;
}

.luxury-follow-btn:hover {
    background: #0f172a !important;
    color: #fff !important;
    border-color: #0f172a !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dark-mode .luxury-follow-btn {
    background: #1e293b !important;
    color: #e2e8f0 !important;
    border-color: #334155 !important;
}

.dark-mode .luxury-follow-btn:hover {
    background: #ed1c1d !important;
    color: #fff !important;
    border-color: #ed1c1d !important;
}

.luxury-follow-btn i {
    font-size: 16px;
}

.luxury-follow-us-section .section-title .title {
    color: #0f172a;
}

/* 27. Premium Sidebar Image Style - Circular Layout */
.post-item-small {
    display: flex !important;
    align-items: center !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    margin-bottom: 0 !important;
}

.post-item-small:last-of-type {
    border-bottom: none !important;
}

.post-item-small .left {
    padding-right: 15px !important;
    vertical-align: middle !important;
}

.post-item-small .image {
    width: 85px !important;
    height: 85px !important;
    min-width: 85px;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.post-item-small:hover .image {
    transform: scale(1.05);
}

.post-item-small .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.post-item-small .right {
    vertical-align: middle !important;
}

.post-item-small .title {
    margin-bottom: 6px !important;
}

.post-item-small .title a {
    font-size: 15px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    font-family: var(--vr-font-primary) !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-item-small .small-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.post-item-small .small-post-meta a.a-username {
    display: none !important;
    /* Premium clean look: hide author in sidebar small items */
}

.post-item-small .small-post-meta span {
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ed1c1d !important;
    /* Show category/meta in brand red */
}

.post-item-small .small-post-meta i {
    display: none;
    /* Hide icons in sidebar for ultra-clean look */
}

/* Redesign sidebar dashed lines to clean premium borders */
.sidebar-widget .widget-body {
    padding-top: 0 !important;
}

.sidebar .sidebar-widget {
    margin-bottom: 40px !important;
}

/* Sidebar Header Luxury Polish */
.sidebar .sidebar-widget .widget-head {
    border-bottom: 3px solid #0f172a !important;
    margin-bottom: 15px !important;
}

.sidebar .sidebar-widget .widget-head .title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    font-family: var(--vr-font-secondary) !important;
    text-transform: capitalize !important;
    letter-spacing: -0.5px !important;
}

/* 28. Fixed Premium Sidebar Style - Rectangular Rounded */
.post-item-small {
    display: flex !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    margin-bottom: 0 !important;
    align-items: flex-start !important;
}

.post-item-small .left {
    display: block !important;
    width: 100px !important;
    min-width: 100px !important;
    padding-right: 15px !important;
    float: none !important;
}

.post-item-small .image {
    width: 100% !important;
    height: 70px !important;
    border-radius: 6px !important;
    /* Premium rounded corners instead of circles */
    overflow: hidden !important;
    background: #f8fafc;
}

.post-item-small .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.post-item-small .right {
    display: block !important;
    width: auto !important;
    padding: 0 !important;
    float: none !important;
}

.post-item-small .title {
    margin: 0 0 5px 0 !important;
}

.post-item-small .title a {
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--vr-font-primary) !important;
}

.post-item-small .small-post-meta {
    font-size: 11px !important;
    color: #94a3b8 !important;
    display: flex;
    gap: 8px;
}

.post-item-small .small-post-meta a,
.post-item-small .small-post-meta span {
    color: #ed1c1d !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 10px !important;
}

.post-item-small .small-post-meta i {
    display: none;
}

/* 29. Layout Force Reset for Sidebar */
.sidebar .post-item-small.tbl-container {
    display: flex !important;
    width: 100% !important;
}

.sidebar .post-item-small .tbl-cell.left {
    display: block !important;
    flex: 0 0 100px !important;
    width: 100px !important;
}

.sidebar .post-item-small .tbl-cell.right {
    display: block !important;
    flex: 1 !important;
    width: auto !important;
}

/* Remove circular style from previous turn if it stuck */
.post-item-small .image {
    border-radius: 6px !important;
}

/* 30. Restoring Original Premium Sidebar Style (as per Step 1149) */

.sidebar .post-item-small {
    display: flex !important;
    padding: 20px 0 !important;
    border-bottom: 1px dashed #e2e8f0 !important;
    /* Original dashed style */
    margin-bottom: 0 !important;
    border-top: none !important;
}

.sidebar .post-item-small:last-of-type {
    border-bottom: none !important;
}

.sidebar .post-item-small .left {
    flex: 0 0 100px !important;
    width: 100px !important;
    padding-right: 15px !important;
}

.sidebar .post-item-small .image {
    width: 100px !important;
    height: 100px !important;
    /* Making it more square as per original */
    border-radius: 4px !important;
    box-shadow: none !important;
    border: none !important;
}

.sidebar .post-item-small .image img {
    border-radius: 4px !important;
}

.sidebar .post-item-small .right {
    flex: 1 !important;
}

/* Category Label Above Title */
.post-item-label a {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    /* Muted gray as per original */
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 4px !important;
    text-decoration: none !important;
}

.sidebar .post-item-small .title {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.sidebar .post-item-small .title a {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    line-height: 1.4 !important;
}

/* Hide date and other meta in sidebar for that 'Original' look */
.sidebar .post-item-small .small-post-meta {
    display: none !important;
}

/* Premium Header for Sidebar */
.sidebar .sidebar-widget .widget-head {
    border-bottom: 2px solid #000 !important;
    margin-bottom: 15px !important;
    padding-bottom: 5px !important;
}

.sidebar .sidebar-widget .widget-head .title {
    font-family: var(--vr-font-primary) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #000 !important;
    text-transform: capitalize !important;
}

/* 31. Exact Match for Sidebar Design (Screenshot Match) */

.col-sidebar .sidebar-widget {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin-bottom: 45px !important;
}

.col-sidebar .sidebar-widget .widget-head {
    border: none !important;
    margin-bottom: 22px !important;
    padding: 0 !important;
    border-bottom: 2px solid #000 !important;
    /* Premium bottom border */
    display: flex;
}

.col-sidebar .sidebar-widget .widget-head .title {
    font-family: var(--vr-font-secondary) !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #000 !important;
    text-transform: capitalize !important;
    letter-spacing: -0.7px !important;
    border: none !important;
    padding-bottom: 5px;
}

.col-sidebar .post-item-small {
    display: flex !important;
    padding: 20px 0 !important;
    border-bottom: 1px dashed #cfd8dc !important;
    /* Muted gray dashed line */
    margin-bottom: 0 !important;
    background: transparent !important;
    border-top: none !important;
}

.col-sidebar .post-item-small:last-of-type {
    border-bottom: none !important;
}

.col-sidebar .post-item-small .left {
    flex: 0 0 130px !important;
    width: 130px !important;
    padding-right: 18px !important;
}

.col-sidebar .post-item-small .image {
    width: 130px !important;
    height: 90px !important;
    border-radius: 0 !important;
    /* Sharp corners */
    overflow: hidden !important;
    background: #f1f5f9;
}

.col-sidebar .post-item-small .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    /* Sharp corners */
}

.col-sidebar .post-item-small .right {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.post-item-label a {
    font-family: var(--vr-font-secondary) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    /* Slate/Gray category color */
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 5px !important;
    display: block;
    text-decoration: none !important;
}

.col-sidebar .post-item-small .title {
    margin: 0 !important;
    line-height: 1.35 !important;
}

.col-sidebar .post-item-small .title a {
    font-family: var(--vr-font-secondary) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000 !important;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.col-sidebar .post-item-small .title a:hover {
    color: #ed1c1d !important;
}

.col-sidebar .post-item-small .small-post-meta {
    display: none !important;
}

/* 32. Restoration of Website Fonts for Post Detail */
.luxury-serif-title {
    font-family: var(--vr-font-secondary) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
}

.post-text {
    font-family: var(--vr-font-primary) !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
}

.post-text p:first-of-type::first-letter {
    font-family: var(--vr-font-secondary) !important;
    font-weight: 800;
}

.luxury-summary {
    font-family: var(--vr-font-primary) !important;
}

/* Sidebar Title Font Consistency */
.col-sidebar .sidebar-widget .widget-head .title {
    font-family: var(--vr-font-secondary) !important;
}

.col-sidebar .post-item-small .title a {
    font-family: var(--vr-font-secondary) !important;
}

/* 33. Related Posts Font Fix */
/* .section-related-posts .title {
    font-family: var(--vr-font-secondary) !important;
    font-weight: 800 !important;
}

.section-related-posts .post-item .title a {
    font-family: var(--vr-font-secondary) !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    line-height: 1.3 !important;
}

.section-related-posts .small-post-meta,
.section-related-posts .small-post-meta a {
    font-family: var(--vr-font-primary) !important;
} */

/* 34. Final Border & Divider Polish */

/* Widget Head Border - Bolder & Visible */
.col-sidebar .sidebar-widget .widget-head {
    border-bottom: 2.5px solid #000 !important;
    padding-bottom: 8px !important;
    margin-bottom: 20px !important;
}

.col-sidebar .sidebar-widget .widget-head .title {
    font-size: 24px !important;
    font-weight: 900 !important;
    padding-bottom: 0 !important;
}

/* Post Item Dividers - Solid & Elegant */
.col-sidebar .post-item-small {
    border-bottom: 1.5px solid #f1f5f9 !important;
    /* Solid light divider */
    padding: 18px 0 !important;
}

.col-sidebar .post-item-small:last-of-type {
    border-bottom: none !important;
}

/* Ensure no border radius on images */
.col-sidebar .post-item-small .image,
.col-sidebar .post-item-small .image img {
    border-radius: 0 !important;
}

/* 35. Final Refined Sidebar - Exact Match to Original Layout */

/* Kill the blue line and other theme decorations */
.col-sidebar .sidebar-widget .widget-head::after,
.col-sidebar .sidebar-widget .widget-head::before,
.col-sidebar .sidebar-widget .widget-head .title::after,
.col-sidebar .sidebar-widget .widget-head .title::before {
    display: none !important;
    content: none !important;
}

.col-sidebar .sidebar-widget .widget-head {
    border-bottom: 2px solid #000 !important;
    /* Single bold black line */
    margin-bottom: 25px !important;
    padding-bottom: 8px !important;
    display: block !important;
}

.col-sidebar .sidebar-widget .widget-head .title {
    font-family: var(--vr-font-secondary) !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #000 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* Post Item Styling */
.col-sidebar .post-item-small {
    display: flex !important;
    padding: 20px 0 !important;
    border-bottom: 1px dashed #cfd8dc !important;
    /* Restore the dashed dividers */
    margin-bottom: 0 !important;
    background: transparent !important;
    border-top: none !important;
    box-shadow: none !important;
    /* Remove any theme shadows */
}

.col-sidebar .post-item-small:last-of-type {
    border-bottom: none !important;
}

.col-sidebar .post-item-small .left {
    flex: 0 0 115px !important;
    width: 115px !important;
    padding-right: 15px !important;
}

.col-sidebar .post-item-small .image {
    width: 115px !important;
    height: 115px !important;
    border-radius: 0 !important;
    /* Pure square */
    border: none !important;
    /* Remove theme borders */
    box-shadow: none !important;
    /* Remove theme shadows */
}

.col-sidebar .post-item-small .image img {
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Category Label Spacing */
.post-item-label a {
    color: #64748b !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    margin-bottom: 4px !important;
}

.col-sidebar .post-item-small .title a {
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    color: #1e293b !important;
}

/* 36. Divider Visibility & Theme Decoration Wipeout */

/* Force dividers to show in the sidebar */
.col-sidebar .post-item-small,
.col-sidebar div[class*="post-item"] {
    border-bottom: 1px dashed #cfd8dc !important;
    display: flex !important;
    padding: 20px 0 !important;
    margin-bottom: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.col-sidebar .post-item-small:last-of-type,
.col-sidebar div[class*="post-item"]:last-child {
    border-bottom: none !important;
}

/* Kill the blue line and any other theme-specific decorative bars */
.col-sidebar .widget-head,
.col-sidebar .widget-head .title,
.col-sidebar .sidebar-widget-title {
    border-bottom: 2px solid #000 !important;
    /* The desired bold black border */
    position: relative !important;
}

/* Aggressively remove any theme-generated pseudo-elements (like the blue segment) */
.col-sidebar .widget-head::after,
.col-sidebar .widget-head::before,
.col-sidebar .widget-head .title::after,
.col-sidebar .widget-head .title::before,
.col-sidebar .sidebar-widget-title::after,
.col-sidebar .sidebar-widget-title::before,
.col-sidebar .widget-head h4::after,
.col-sidebar .widget-head h4::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

/* Fix for the square image styling to ensure it's not overridden */
.col-sidebar .post-item-small .left,
.col-sidebar .post-item-small .image {
    width: 115px !important;
    height: 115px !important;
    min-width: 115px !important;
    border-radius: 0 !important;
}

/* 37. Correcting Sidebar Dividers - Removing Internal Lines */

/* Target ONLY the main container for the dashed border */
.col-sidebar .post-item-small {
    border-bottom: 1px dashed #cfd8dc !important;
    display: flex !important;
    padding: 20px 0 !important;
    margin-bottom: 0 !important;
    background: transparent !important;
}

/* Remove the accidental borders from internal labels or nested items */
.col-sidebar div[class*="post-item"]:not(.post-item-small) {
    border-bottom: none !important;
}

/* Ensure the label (category) doesn't have a border */
.col-sidebar .post-item-label {
    border-bottom: none !important;
    margin-bottom: 4px !important;
    padding: 0 !important;
}

.col-sidebar .post-item-small:last-of-type {
    border-bottom: none !important;
}

/* Fix spacing for the title to prevent overcrowding */
.col-sidebar .post-item-small .title {
    margin-top: 2px !important;
    border: none !important;
}

/* Confirm no borders on meta info */
.col-sidebar .small-post-meta {
    border-bottom: none !important;
}

/* 38. Aggressive Sidebar Reset - No More Blue Lines & Correct Dividers */

/* 1. Header Cleanup - Remove all theme accent segments (blue/red lines) */
.col-sidebar .sidebar-widget .widget-head,
.col-sidebar .widget-head,
.col-sidebar .sidebar-widget-title {
    border-bottom: 2px solid #000 !important;
    /* The single solid black line */
    padding-bottom: 8px !important;
    margin-bottom: 25px !important;
    position: relative !important;
    display: block !important;
    background: transparent !important;
}

.col-sidebar .sidebar-widget .widget-head::after,
.col-sidebar .sidebar-widget .widget-head::before,
.col-sidebar .widget-head::after,
.col-sidebar .widget-head::before,
.col-sidebar .widget-head .title::after,
.col-sidebar .widget-head .title::before,
.col-sidebar .sidebar-widget-title::after,
.col-sidebar .sidebar-widget-title::before {
    display: none !important;
    content: none !important;
    height: 0 !important;
    width: 0 !important;
}

.col-sidebar .sidebar-widget .widget-head .title {
    font-family: var(--vr-font-secondary) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #000 !important;
    border: none !important;
    padding: 0 !important;
}

/* 2. Post Item Divider Cleanup */
.col-sidebar .post-item-small {
    border-bottom: 1px dashed #cfd8dc !important;
    /* The ONLY divider */
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    padding: 18px 0 !important;
    margin-bottom: 0 !important;
    display: flex !important;
}

.col-sidebar .post-item-small:last-of-type {
    border-bottom: none !important;
}

/* 3. Remove accidental internal borders (the ones showing between category and title) */
.col-sidebar .post-item-small .tbl-cell,
.col-sidebar .post-item-small .post-item-label,
.col-sidebar .post-item-small .title,
.col-sidebar .post-item-small .right {
    border: none !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.col-sidebar .post-item-label {
    margin-bottom: 4px !important;
}

.col-sidebar .post-item-label a {
    color: #64748b !important;
    font-family: var(--vr-font-secondary) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.col-sidebar .post-item-small .title a {
    font-family: var(--vr-font-secondary) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    line-height: 1.4 !important;
}

/* 4. Ensure Square Images are Fixed */
.col-sidebar .post-item-small .left,
.col-sidebar .post-item-small .image {
    width: 115px !important;
    height: 115px !important;
    min-width: 115px !important;
    border-radius: 0 !important;
}

.col-sidebar .post-item-small .image img {
    border-radius: 0 !important;
}

/* 39. Nuclear Sidebar Layout Fix - Forced Visibility */

/* Header Border - Force Full Width */
.col-sidebar .sidebar-widget .widget-head,
.col-sidebar .widget-head,
.col-sidebar .sidebar-widget-title {
    display: block !important;
    width: 100% !important;
    border-bottom: 2px solid #000 !important;
    /* Thick black line */
    padding-bottom: 10px !important;
    margin-bottom: 25px !important;
    background: none !important;
}

/* Force removal of the theme's segment/blue line segment */
.col-sidebar .widget-head::after,
.col-sidebar .widget-head::before,
.col-sidebar .widget-head span::after,
.col-sidebar .widget-head h4::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Post Item Dividers - Darker & Forced */
.col-sidebar .post-item-small {
    border-bottom: 1px dashed #94a3b8 !important;
    /* Darker slate gray for visibility */
    display: flex !important;
    flex-direction: row !important;
    padding: 22px 0 !important;
    margin: 0 !important;
    width: 100% !important;
    background: none !important;
}

.col-sidebar .post-item-small:last-child,
.col-sidebar .post-item-small:last-of-type {
    border-bottom: none !important;
}

/* Force Square Images */
.col-sidebar .post-item-small .left,
.col-sidebar .post-item-small .left .image {
    width: 115px !important;
    height: 115px !important;
    min-width: 115px !important;
    max-width: 115px !important;
    display: block !important;
}

.col-sidebar .post-item-small .image a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.col-sidebar .post-item-small .image img {
    width: 115px !important;
    height: 115px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
}

/* Remove any accidental table-cell styling that breaks borders */
.col-sidebar .post-item-small.tbl-container {
    display: flex !important;
}

.col-sidebar .post-item-small .tbl-cell {
    display: block !important;
    padding: 0 !important;
    border: none !important;
}

.col-sidebar .post-item-small .right {
    margin-left: 15px !important;
    flex: 1 !important;
}

/* 40. Vertical Layout Separator */
@media (min-width: 992px) {
    .outlook-sidebar-column {
        border-left: 1px solid #e2e8f0 !important;
        padding-left: 35px !important;
    }

    .col-lg-8 {
        padding-right: 35px !important;
    }
}

@media (max-width: 991px) {
    .outlook-sidebar-column {
        border-top: 1px solid #e2e8f0 !important;
        padding-top: 40px !important;
        margin-top: 20px !important;
    }
}

/* ========================================
   RELATED POSTS - CLEAN GRID DESIGN
   ======================================== */

/* Section container */
.section-related-posts {
    border: none !important;
    padding-top: 40px !important;
    margin-top: 40px !important;
}

/* Header styling */
.section-related-posts .outlook-section-header {
    border-bottom: 2px solid #000 !important;
    margin-bottom: 30px !important;
    padding-bottom: 10px !important;
}

.section-related-posts .outlook-header-box {
    background: transparent !important;
    color: #000 !important;
    padding: 0 !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-family: var(--vr-font-secondary) !important;
}

/* Post item - NO BORDERS */
.section-related-posts .post-item {
    border: none !important;
    padding: 0 !important;
    margin-bottom: 35px !important;
    background: transparent !important;
}

/* Image */
.section-related-posts .post-item .image {
    width: 100% !important;
    margin-bottom: 12px !important;
    border-radius: 0 !important;
}

.section-related-posts .post-item .image img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
}

/* Title */
.section-related-posts .post-item .title {
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
}

.section-related-posts .post-item .title a {
    font-family: var(--vr-font-secondary) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #1a202c !important;
    text-decoration: none !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    /* Limit title to 3 lines */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.section-related-posts .post-item .title a:hover {
    color: #ed1c1d !important;
}

/* Summary */
.section-related-posts .post-summary {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #6b7280 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    /* Limit excerpt to 3 lines */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Grid columns */
.section-related-posts .col-6,
.section-related-posts .col-md-6,
.section-related-posts .col-lg-4 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .section-related-posts .post-item {
        margin-bottom: 25px !important;
    }

    .section-related-posts .post-item .image img {
        height: 140px !important;
    }
}

/* ========================================
   42. POST DETAIL PAGE SIDEBAR FIXED
   Forcing 'Trending' & 'Editor Choice' to obey clean design
   ======================================== */

/* Main Sidebar Wrapper Cleanup */
#postDetailsPage .sidebar-widget,
#postDetailsPage .outlook-sidebar-compact .sidebar-widget,
.sidebar .sidebar-widget,
.col-sidebar .sidebar-widget {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 40px !important;
}

/* 1. WIDGET TITLES (Black Border, Sans-Serif) */
#postDetailsPage .sidebar-widget .widget-head,
#postDetailsPage .sidebar-widget .sidebar-widget-title,
.sidebar .sidebar-widget-title,
.sidebar #header-trending-posts {
    display: block !important;
    width: 100% !important;
    border-bottom: 2px solid #000 !important;
    /* Force Black */
    margin-bottom: 25px !important;
    padding-bottom: 10px !important;
    font-family: var(--vr-font-secondary) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #000 !important;
    text-transform: capitalize !important;
    letter-spacing: -0.5px !important;
    background: transparent !important;
    line-height: 1.2 !important;
}

/* Trending Header Specific Override */
#header-trending-posts,
.sidebar #header-trending-posts {
    border-bottom: 2px solid #000 !important;
    color: #000 !important;
}

/* 2. POST ITEMS (Clean List, Dashed Dividers) */
#postDetailsPage .post-item-small,
.sidebar .post-item-small,
.col-sidebar .post-item-small {
    display: flex !important;
    align-items: flex-start !important;
    /* Top aligned */
    padding: 20px 0 !important;
    border-bottom: 1px dashed #cfd8dc !important;
    /* Metric: Dashed Light Gray */
    margin: 0 !important;
    background: transparent !important;
    gap: 15px !important;
}

/* Remove last border */
#postDetailsPage .post-item-small:last-child,
.sidebar .post-item-small:last-child {
    border-bottom: none !important;
}

/* 3. IMAGES (Square, No Radius) */
#postDetailsPage .post-item-small .image,
#postDetailsPage .post-item-small .left,
.sidebar .post-item-small .image,
.sidebar .post-item-small .left {
    width: 115px !important;
    height: 115px !important;
    min-width: 115px !important;
    flex-shrink: 0 !important;
    border-radius: 0 !important;
    /* Sharp corners */
    margin: 0 !important;
    overflow: hidden !important;
    box-shadow: none !important;
    border: none !important;
}

#postDetailsPage .post-item-small .image img,
.sidebar .post-item-small .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
}

/* 4. CONTENT & TYPOGRAPHY (Sans-Serif) */
#postDetailsPage .post-item-small .right,
.sidebar .post-item-small .right {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

/* Category Label */
#postDetailsPage .post-item-label a,
.sidebar .post-item-label a {
    font-family: var(--vr-font-secondary) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: block !important;
    margin-bottom: 5px !important;
    text-decoration: none !important;
}

/* Post Title */
#postDetailsPage .post-item-small .title a,
.sidebar .post-item-small .title a {
    font-family: var(--vr-font-secondary) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    color: #1a202c !important;
    text-decoration: none !important;
    margin: 0 !important;
    transition: color 0.2s;
}

#postDetailsPage .post-item-small .title a:hover,
.sidebar .post-item-small .title a:hover {
    color: #ed1c1d !important;
}

/* Hide Extra Meta */
#postDetailsPage .post-item-small .small-post-meta,
.sidebar .post-item-small .small-post-meta {
    display: none !important;
}

/* ========================================
   43. SPECIFIC WIDGET DESIGNS (RESTORED)
   Restoring Landscape for Editor's Choice
   Restoring Numbered List for Trending
   ======================================== */

/* --- EDITOR'S CHOICE (Landscape Layout) --- */
/* Assuming common classes for Editor's Choice */
.sidebar .widget_editor_choice .post-item-small,
.sidebar .widget_editors_pick .post-item-small,
.sidebar .widget-editor-choice .post-item-small,
#postDetailsPage .widget_editor_choice .post-item-small,
#postDetailsPage .widget-editor-choice .post-item-small {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

.sidebar .widget_editor_choice .post-item-small .image,
.sidebar .widget-editor-choice .post-item-small .image,
#postDetailsPage .widget_editor_choice .post-item-small .image,
#postDetailsPage .widget-editor-choice .post-item-small .image {
    width: 100% !important;
    height: 180px !important;
    /* Landscape */
    margin-bottom: 5px !important;
    border-radius: 4px !important;
    /* Slight radius for feature look */
}

/* --- TRENDING / POPULAR (Large Pale Numbers - Text Only - HIGH SPECIFICITY FIX) --- */
/* Target specific ID + Sibling Combinators to BREAK any previous overrides */

/* 1. Header Styling */
#postDetailsPage .sidebar #header-trending-posts,
#postDetailsPage .sidebar .widget_popular_entries .widget-head,
.sidebar #header-trending-posts {
    border-bottom: 2px solid #ed1c1d !important;
    /* Red Underline */
    color: #000 !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
}

/* 2. Initialize Counter (Scope to Sidebar) */
.sidebar:has(#header-trending-posts),
.sidebar-widget:has(#header-trending-posts) {
    counter-reset: trending-count;
}

/* Fallback for older browsers: assume common widget classes if :has fails or ID is title */
.sidebar .widget_popular_entries,
.sidebar .widget_trending_entries {
    counter-reset: trending-count;
}

/* 3. Post Item Container - Force Row Layout */
/* Using Sibling Combinator to target items AFTER the specific header */
/* Added .trending-item to coverage */
#header-trending-posts~.post-item-small,
#header-trending-posts~.trending-item,
#header-trending-posts~.widget-content .post-item-small,
#header-trending-posts~.widget-content .trending-item,
.sidebar .widget_popular_entries .post-item-small,
.sidebar .widget_trending_entries .post-item-small {
    counter-increment: trending-count;
    display: flex !important;
    flex-direction: row !important;
    /* Force side-by-side */
    align-items: flex-start !important;
    border-bottom: 1px solid #e2e8f0 !important;
    padding: 20px 0 !important;
    gap: 15px !important;
    margin: 0 !important;
    border-right: none !important;
    /* Reset legacy */
    width: 100% !important;
}

/* 4. Hide Image */
#header-trending-posts~.post-item-small .image,
#header-trending-posts~.post-item-small .left,
#header-trending-posts~.trending-item .image,
#header-trending-posts~.trending-item .number,
/* Hide legacy number */
.sidebar .widget_popular_entries .post-item-small .image,
.sidebar .widget_trending_entries .post-item-small .image {
    display: none !important;
}

/* 5. The Number (Pale Red) */
#header-trending-posts~.post-item-small::before,
#header-trending-posts~.trending-item::before,
.sidebar .widget_popular_entries .post-item-small::before,
.sidebar .widget_trending_entries .post-item-small::before {
    content: counter(trending-count);
    font-family: var(--vr-font-secondary) !important;
    font-size: 50px !important;
    font-weight: 800 !important;
    color: #fca5a5 !important;
    /* Pale Pink/Red */
    line-height: 0.8 !important;
    /* Compact height */
    margin-right: 5px !important;
    flex-shrink: 0 !important;
    width: 45px !important;
    text-align: center !important;
}

/* 6. Title Styling */
#header-trending-posts~.post-item-small .title,
#header-trending-posts~.trending-item .title,
.sidebar .widget_popular_entries .post-item-small .title,
.sidebar .widget_trending_entries .post-item-small .title {
    margin: 0 !important;
    padding-top: 5px !important;
    /* Align top with number */
    flex: 1 !important;
}

#header-trending-posts~.post-item-small .title a,
#header-trending-posts~.trending-item .title a,
.sidebar .widget_popular_entries .post-item-small .title a,
.sidebar .widget_trending_entries .post-item-small .title a {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    display: block !important;
}

#header-trending-posts~.post-item-small .title a:hover,
#header-trending-posts~.trending-item .title a:hover,
.sidebar .widget_popular_entries .post-item-small .title a:hover,
.sidebar .widget_trending_entries .post-item-small .title a:hover {
    color: #ed1c1d !important;
}

/* ========================================
   44. TRENDING SECTION - EXACT IMAGE MATCH
   Post Detail Page Sidebar ONLY - Large Pale Numbers Style
   ======================================== */

/* NUCLEAR RESET - Override ALL previous trending styles - POST DETAIL PAGE ONLY */
/* Exclude homepage trending by scoping to sidebar context */
#postDetailsPage .sidebar .widget_popular_entries *,
#postDetailsPage .sidebar .widget_trending_entries *,
#postDetailsPage .widget_popular_entries *,
#postDetailsPage .widget_trending_entries *,
body:not(.home) .sidebar .widget_popular_entries *,
body:not(.home) .sidebar .widget_trending_entries *,
.single .sidebar .widget_popular_entries *,
.single .sidebar .widget_trending_entries *,
.single-post .sidebar .widget_popular_entries *,
.single-post .sidebar .widget_trending_entries * {
    all: unset !important;
}

/* Re-establish basic box model - POST DETAIL PAGE ONLY */
#postDetailsPage .sidebar .widget_popular_entries,
#postDetailsPage .sidebar .widget_trending_entries,
body:not(.home) .sidebar .widget_popular_entries,
body:not(.home) .sidebar .widget_trending_entries,
.single .sidebar .widget_popular_entries,
.single .sidebar .widget_trending_entries {
    display: block !important;
    width: 100% !important;
    counter-reset: trending-counter;
}

/* Widget Header - "MOST POPULAR" style - POST DETAIL PAGE ONLY */
#postDetailsPage .sidebar .widget_popular_entries .widget-head,
#postDetailsPage .sidebar .widget_trending_entries .widget-head,
body:not(.home) .sidebar .widget_popular_entries .widget-head,
body:not(.home) .sidebar .widget_trending_entries .widget-head,
.single .sidebar .widget_popular_entries .widget-head,
.single .sidebar .widget_trending_entries .widget-head {
    display: block !important;
    width: 100% !important;
    border-bottom: 2px solid #000 !important;
    padding-bottom: 10px !important;
    margin-bottom: 20px !important;
}

#postDetailsPage .sidebar .widget_popular_entries .widget-head .title,
#postDetailsPage .sidebar .widget_trending_entries .widget-head .title,
body:not(.home) .sidebar .widget_popular_entries .widget-head .title,
body:not(.home) .sidebar .widget_trending_entries .widget-head .title,
.single .sidebar .widget_popular_entries .widget-head .title,
.single .sidebar .widget_trending_entries .widget-head .title {
    font-family: var(--vr-font-secondary) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #000 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Post Item Container - POST DETAIL PAGE ONLY */
#postDetailsPage .sidebar .widget_popular_entries .post-item-small,
#postDetailsPage .sidebar .widget_trending_entries .post-item-small,
body:not(.home) .sidebar .widget_popular_entries .post-item-small,
body:not(.home) .sidebar .widget_trending_entries .post-item-small,
.single .sidebar .widget_popular_entries .post-item-small,
.single .sidebar .widget_trending_entries .post-item-small {
    counter-increment: trending-counter;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
    gap: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#postDetailsPage .sidebar .widget_popular_entries .post-item-small:last-child,
#postDetailsPage .sidebar .widget_trending_entries .post-item-small:last-child,
body:not(.home) .sidebar .widget_popular_entries .post-item-small:last-child,
body:not(.home) .sidebar .widget_trending_entries .post-item-small:last-child,
.single .sidebar .widget_popular_entries .post-item-small:last-child,
.single .sidebar .widget_trending_entries .post-item-small:last-child {
    border-bottom: none !important;
}

/* Hide ALL images and legacy numbers - POST DETAIL PAGE ONLY */
#postDetailsPage .sidebar .widget_popular_entries .post-item-small .image,
#postDetailsPage .sidebar .widget_trending_entries .post-item-small .image,
#postDetailsPage .sidebar .widget_popular_entries .post-item-small .left,
#postDetailsPage .sidebar .widget_trending_entries .post-item-small .left,
body:not(.home) .sidebar .widget_popular_entries .post-item-small .image,
body:not(.home) .sidebar .widget_trending_entries .post-item-small .image,
.single .sidebar .widget_popular_entries .post-item-small .image,
.single .sidebar .widget_trending_entries .post-item-small .image {
    display: none !important;
    visibility: hidden !important;
}

/* Generate Large Pale Pink Number - POST DETAIL PAGE ONLY */
#postDetailsPage .sidebar .widget_popular_entries .post-item-small::before,
#postDetailsPage .sidebar .widget_trending_entries .post-item-small::before,
body:not(.home) .sidebar .widget_popular_entries .post-item-small::before,
body:not(.home) .sidebar .widget_trending_entries .post-item-small::before,
.single .sidebar .widget_popular_entries .post-item-small::before,
.single .sidebar .widget_trending_entries .post-item-small::before {
    content: counter(trending-counter) !important;
    display: block !important;
    font-family: var(--vr-font-secondary) !important;
    font-size: 60px !important;
    font-weight: 700 !important;
    color: #ffc0cb !important;
    /* Pale pink matching image */
    line-height: 1 !important;
    width: 50px !important;
    flex-shrink: 0 !important;
    text-align: left !important;
    margin-right: 10px !important;
}

/* Title Container - POST DETAIL PAGE ONLY */
#postDetailsPage .sidebar .widget_popular_entries .post-item-small .title,
#postDetailsPage .sidebar .widget_trending_entries .post-item-small .title,
#postDetailsPage .sidebar .widget_popular_entries .post-item-small .right,
#postDetailsPage .sidebar .widget_trending_entries .post-item-small .right,
body:not(.home) .sidebar .widget_popular_entries .post-item-small .title,
body:not(.home) .sidebar .widget_trending_entries .post-item-small .title,
.single .sidebar .widget_popular_entries .post-item-small .title,
.single .sidebar .widget_trending_entries .post-item-small .title {
    display: block !important;
    flex: 1 !important;
    padding-top: 8px !important;
}

/* Title Link - POST DETAIL PAGE ONLY */
#postDetailsPage .sidebar .widget_popular_entries .post-item-small .title a,
#postDetailsPage .sidebar .widget_trending_entries .post-item-small .title a,
body:not(.home) .sidebar .widget_popular_entries .post-item-small .title a,
body:not(.home) .sidebar .widget_trending_entries .post-item-small .title a,
.single .sidebar .widget_popular_entries .post-item-small .title a,
.single .sidebar .widget_trending_entries .post-item-small .title a {
    display: block !important;
    font-family: var(--vr-font-secondary) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000 !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
}

#postDetailsPage .sidebar .widget_popular_entries .post-item-small .title a:hover,
#postDetailsPage .sidebar .widget_trending_entries .post-item-small .title a:hover,
body:not(.home) .sidebar .widget_popular_entries .post-item-small .title a:hover,
body:not(.home) .sidebar .widget_trending_entries .post-item-small .title a:hover,
.single .sidebar .widget_popular_entries .post-item-small .title a:hover,
.single .sidebar .widget_trending_entries .post-item-small .title a:hover {
    color: #ed1c1d !important;
}

/* Hide any meta information */
.sidebar .widget_popular_entries .post-item-small .small-post-meta,
.sidebar .widget_trending_entries .post-item-small .small-post-meta,
#postDetailsPage .widget_popular_entries .post-item-small .small-post-meta,
#postDetailsPage .widget_trending_entries .post-item-small .small-post-meta,
.sidebar .widget_popular_entries .post-item-small .post-item-label,
.sidebar .widget_trending_entries .post-item-small .post-item-label {
    display: none !important;
}

/* ========================================
   SIDEBAR TRENDING/POPULAR POSTS - "MOST POPULAR" STYLE
   ======================================== */

/* Sidebar Widget Container */
.sidebar-widget {
    background: #fff;
    margin-bottom: 30px;
    padding: 0;
}

/* Widget Header - "MOST POPULAR" Style */
.sidebar-widget .widget-head {
    border-bottom: 2px solid #000;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.sidebar-widget .widget-head .title {
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #000 !important;
    margin: 0 !important;
    font-family: var(--vr-font-secondary) !important;
}

/* Trending Item Container */
.outlook-trending-item {
    display: flex !important;
    align-items: flex-start !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.outlook-trending-item:last-child {
    border-bottom: none !important;
}

.outlook-trending-item:hover {
    background: #fafafa !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    margin-left: -8px !important;
    margin-right: -8px !important;
}

/* Large Pink Number - "MOST POPULAR" Style */
.outlook-trending-item .trending-number {
    font-size: 48px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin-right: 18px !important;
    flex-shrink: 0 !important;
    width: 50px !important;
    text-align: left !important;
    font-family: Georgia, 'Times New Roman', serif !important;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    opacity: 0.85 !important;
    transition: all 0.3s ease !important;
}

.outlook-trending-item:hover .trending-number {
    opacity: 1 !important;
    transform: scale(1.05) !important;
}

/* Content Area */
.outlook-trending-item .trending-content {
    flex: 1 !important;
    overflow: hidden !important;
    padding-top: 4px !important;
}

/* Title Styling */
.outlook-trending-item .trending-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    color: #1e293b !important;
    font-family: var(--vr-font-secondary) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    transition: color 0.2s ease !important;
}

.outlook-trending-item .trending-title a {
    color: #1e293b !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.outlook-trending-item .trending-title a:hover {
    color: #ed1c1d !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .outlook-trending-item .trending-number {
        font-size: 42px !important;
        width: 45px !important;
        margin-right: 15px !important;
    }

    .outlook-trending-item .trending-title {
        font-size: 15px !important;
    }
}

@media (max-width: 576px) {
    .outlook-trending-item .trending-number {
        font-size: 38px !important;
        width: 40px !important;
        margin-right: 12px !important;
    }

    .outlook-trending-item .trending-title {
        font-size: 14px !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
    }

    .outlook-trending-item {
        padding: 15px 0 !important;
    }
}

/* ========================================
   SIDEBAR RECOMMENDED POSTS - "MORE FROM THE AUTHOR" STYLE
   ======================================== */

/* Recommended Widget Header */
.sidebar-widget .widget-head.recommended-head {
    border-bottom: 2px solid #000;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.sidebar-widget .widget-head.recommended-head .title {
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #000 !important;
    margin: 0 !important;
    font-family: var(--vr-font-secondary) !important;
}

/* Recommended Item Container */
.outlook-recommended-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid #d1d5db !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.outlook-recommended-item:last-child {
    border-bottom: 1px solid #d1d5db !important;
}

.outlook-recommended-item:hover {
    background: #fafafa !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    margin-left: -8px !important;
    margin-right: -8px !important;
}

/* Thumbnail Image - Left Side */
.outlook-recommended-item .image {
    flex-shrink: 0 !important;
    width: 110px !important;
    height: 75px !important;
    overflow: hidden !important;
    border-radius: 2px !important;
    position: relative !important;
}

.outlook-recommended-item .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.outlook-recommended-item:hover .image img {
    transform: scale(1.08) !important;
}

/* Content Area - Right Side */
.outlook-recommended-item .content {
    flex: 1 !important;
    overflow: hidden !important;
    padding-top: 2px !important;
}

/* Title Styling */
.outlook-recommended-item .title {
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: #1e293b !important;
    font-family: var(--vr-font-secondary) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    transition: color 0.2s ease !important;
}

.outlook-recommended-item .title a {
    color: #1e293b !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.outlook-recommended-item .title a:hover {
    color: #ed1c1d !important;
}

/* Responsive Adjustments for Recommended Posts */
@media (max-width: 991px) {
    .outlook-recommended-item .image {
        width: 100px !important;
        height: 68px !important;
    }

    .outlook-recommended-item .title {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .outlook-recommended-item .image {
        width: 90px !important;
        height: 60px !important;
    }

    .outlook-recommended-item .title {
        font-size: 13px !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
    }

    .outlook-recommended-item {
        padding: 15px 0 !important;
        gap: 12px !important;
    }
}

/* ========================================
   SOCIAL MEDIA FOLLOW SECTION - MATCH RELATED POSTS STYLE
   ======================================== */

/* Follow Us Section Header - Match Related Posts Style */
.luxury-follow-us-section .outlook-section-header {
    border-bottom: 2px solid #000 !important;
    margin-bottom: 30px !important;
    padding-bottom: 10px !important;
}

.luxury-follow-us-section .outlook-header-box {
    background: transparent !important;
    color: #000 !important;
    padding: 0 !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-family: var(--vr-font-secondary) !important;
}

.dark-mode .luxury-follow-us-section .outlook-section-header {
    border-color: #334155 !important;
}

.dark-mode .luxury-follow-us-section .outlook-header-box {
    color: #e2e8f0 !important;
}

/* Responsive adjustments for follow section header */
@media (max-width: 768px) {
    .luxury-follow-us-section .outlook-header-box {
        font-size: 20px !important;
    }
}

@media (max-width: 576px) {
    .luxury-follow-us-section .outlook-header-box {
        font-size: 18px !important;
    }

    .luxury-follow-us-section .outlook-section-header {
        margin-bottom: 20px !important;
    }
}

/* ========================================
   RELATED POSTS SECTION TITLES - 3 LINE LIMIT
   ======================================== */
.section-related-posts .post-item .title a {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.45 !important;
    max-height: 4.35em !important;
    /* 1.45 * 3 lines */
}

/* ========================================
   TOP SECTION MIDDLE COLUMN - SMALL POSTS ON MOBILE
   Limit titles to 4 lines on mobile/tablet view
   ======================================== */
@media (max-width: 991px) {
    .outlook-layout-premium .order-lg-2 .col-6 .outlook-title-small {
        -webkit-line-clamp: 4 !important;
        line-clamp: 4 !important;
        max-height: 7em !important;
        /* Increased height to allow 4 full lines */
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        line-height: 1.4 !important;
    }
}

/* ========================================
   DARK MODE FIXED OVERRIDES - COMPREHENSIVE
   ======================================== */
.dark-mode body,
.dark-mode .wrapper,
.dark-mode .section,
.dark-mode .outlook-layout-premium,
.dark-mode .outlook-category-section-new,
.dark-mode .outlook-premium-grid-section,
.dark-mode .section-cat-slider,
.dark-mode .section-impact-grid,
.dark-mode .outlook-type-1-section,
.dark-mode .section-recommended,
.dark-mode .outlook-trending-section,
.dark-mode .outlook-slider-image,
.dark-mode .outlook-impact-card,
.dark-mode .outlook-impact-card .image-wrap,
.dark-mode .slick-slide .outlook-slider-image,
.dark-mode .slider-container,
.dark-mode .item,
.dark-mode .post-item,
.dark-mode .col-item {
    background-color: #000000 !important;
    background: #000000 !important;
    color: #e0e0e0 !important;
    border-color: #333 !important;
}

/* Specific Section Fixes */
.dark-mode .outlook-type-3-card {
    background-color: #111 !important;
    border-color: #222 !important;
}

.dark-mode .trending-item:hover {
    background-color: #111 !important;
}

/* Fix Text in Dark Mode */
.dark-mode .outlook-title-hero,
.dark-mode .outlook-title-hero a,
.dark-mode .outlook-title-small,
.dark-mode .outlook-title-small a,
.dark-mode .outlook-mid-title,
.dark-mode .outlook-mid-title a,
.dark-mode .outlook-premium-big-title,
.dark-mode .outlook-premium-big-title a,
.dark-mode .outlook-premium-grid-title,
.dark-mode .outlook-premium-grid-title a,
.dark-mode .outlook-sidebar-title,
.dark-mode .outlook-sidebar-title a,
.dark-mode .type-3-title,
.dark-mode .type-3-title a,
.dark-mode .outlook-slider-title,
.dark-mode .outlook-slider-title a,
.dark-mode .outlook-impact-title,
.dark-mode .outlook-impact-title a,
.dark-mode .outlook-list-title-clean,
.dark-mode .outlook-list-title-clean a,
.dark-mode .outlook-fox-title,
.dark-mode .outlook-fox-title a,
.dark-mode .outlook-type-1-big-post .title,
.dark-mode .outlook-type-1-big-post .title a,
.dark-mode .trending-item .title,
.dark-mode .trending-item .title a,
.dark-mode .recommended-item .title,
.dark-mode .recommended-item .title a,
.dark-mode .outlook-category-header-clean .title,
.dark-mode .outlook-category-header-clean .title a,
.dark-mode .section-related-posts .post-item .title a,
.dark-mode .outlook-recommended-item .title,
.dark-mode .outlook-recommended-item .title a,
.dark-mode .outlook-title-list-top,
.dark-mode .outlook-title-list-top a,
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
    color: #f0f0f0 !important;
}

/* Fix Subtle Text in Dark Mode */
.dark-mode .outlook-lede,
.dark-mode .outlook-summary-small,
.dark-mode .outlook-mid-summary,
.dark-mode .outlook-premium-lede,
.dark-mode .outlook-credit,
.dark-mode .outlook-credit .cat,
.dark-mode .type-3-cat,
.dark-mode .outlook-fox-meta,
.dark-mode .outlook-fox-meta i,
.dark-mode .post-meta,
.dark-mode .post-summary {
    color: #aaaaaa !important;
}

/* Fix Borders in Dark Mode */
.dark-mode .outlook-section-header,
.dark-mode .outlook-col-border-right,
.dark-mode .outlook-col-border-left,
.dark-mode .outlook-sep,
.dark-mode .outlook-sep-heavy,
.dark-mode .outlook-sep-light,
.dark-mode .outlook-list-link-item,
.dark-mode .outlook-horizontal-post,
.dark-mode .trending-item,
.dark-mode .outlook-category-header-clean,
.dark-mode .outlook-premium-grid-post,
.dark-mode .outlook-sidebar-item,
.dark-mode .outlook-list-item-clean,
.dark-mode .outlook-type-1-small-post,
.dark-mode .section-related-posts .post-item {
    border-color: #333333 !important;
}

/* Fix Header Lines */
.dark-mode .outlook-category-header-clean {
    border-top-color: #f0f0f0 !important;
}

/* Fix Navigation Buttons in Slider */
.dark-mode .nav-sm-buttons button {
    background: #222 !important;
    border-color: #444 !important;
    color: #fff !important;
}

.dark-mode .nav-sm-buttons button:hover {
    background: #ed1c1d !important;
    border-color: #ed1c1d !important;
}

/* Mobile Specific Dark Mode Fixes */
@media (max-width: 767px) {
    .dark-mode .section-cat-slider {
        background: #000000 !important;
        border-color: #333 !important;
    }

    .dark-mode .outlook-category-header-clean {
        border-top-color: #f0f0f0 !important;
    }
}

/* Fix Section Header Text "புதிய செய்திகள்" & "முக்கிய செய்திகள்" in Dark Mode */
.dark-mode .outlook-header-box {
    background-color: #ed1c1d !important;
    /* Keep red background */
    color: #ffffff !important;
    /* Force White Text */
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fix List Link Items in "புதிய செய்திகள்" Section */
.dark-mode .outlook-title-link,
.dark-mode .outlook-title-link a {
    color: #e0e0e0 !important;
}

.dark-mode .outlook-title-link a:hover {
    color: #ed1c1d !important;
}

/* Fix Mobile Menu Link Colors explicitly again */
.dark-mode .nav-mobile .nav-link,
.dark-mode .nav-mobile .nav-item .nav-link,
.dark-mode .nav-mobile .dropdown-item {
    color: #f0f0f0 !important;
}

.dark-mode .nav-mobile {
    background-color: #000000 !important;
}

/* ========================================
   POST PAGE DARK MODE FIXES
   ======================================== */

/* Sidebar Widgets Titles (Trending, Editor's Pick, etc.) */
.dark-mode .sidebar-widget .widget-head .title,
.dark-mode .widget-title,
.dark-mode .sidebar-widget h4 {
    color: #f0f0f0 !important;
    border-bottom-color: #333 !important;
}

/* Sidebar Trending Posts (Popular Posts) */
.dark-mode .outlook-trending-item .trending-title,
.dark-mode .outlook-trending-item .trending-title a {
    color: #e0e0e0 !important;
}

.dark-mode .outlook-trending-item .trending-title a:hover {
    color: #ed1c1d !important;
}

.dark-mode .outlook-trending-item .trending-number {
    color: #ed1c1d !important;
    /* Keep red or make white if needed */
}

/* Sidebar Recommended Posts (Editor's Pick) */
.dark-mode .outlook-recommended-item .title,
.dark-mode .outlook-recommended-item .title a {
    color: #e0e0e0 !important;
}

.dark-mode .outlook-recommended-item .title a:hover {
    color: #ed1c1d !important;
}

/* Main Post Content & Titles */
.dark-mode .post-content .post-title,
.dark-mode .luxury-serif-title,
.dark-mode .entry-title {
    color: #f0f0f0 !important;
}

/* Post Excerpt / Summary */
.dark-mode .post-summary,
.dark-mode .luxury-summary,
.dark-mode .entry-summary {
    color: #cccccc !important;
}

/* Post Body Text */
.dark-mode .post-text,
.dark-mode .entry-content,
.dark-mode .post-content p,
.dark-mode .post-text p,
.dark-mode .post-description {
    color: #dddddd !important;
}

/* Meta Data (Author, Date) */
.dark-mode .post-meta,
.dark-mode .meta-author span,
.dark-mode .meta-date {
    color: #aaaaaa !important;
}

/* Sidebar Backgrounds (ensure they aren't white) */
.dark-mode .sidebar-widget,
.dark-mode .col-sidebar {
    background-color: transparent !important;
    color: #e0e0e0 !important;
}

/* Fix "Follow Us" Widget Text */
.dark-mode .sidebar-widget .widget-follow .item a span {
    color: #e0e0e0 !important;
}

/* Fix Breadcrumb Navigation */
.dark-mode .breadcrumb-item,
.dark-mode .breadcrumb-item.active {
    color: #cccccc !important;
}

.dark-mode .breadcrumb-item a {
    color: #ffffff !important;
}

.dark-mode .breadcrumb-item a:hover {
    color: #ed1c1d !important;
}

/* Fix "Comments" Tab Navigation */
.dark-mode .nav-tabs .nav-link {
    color: #aaaaaa !important;
    background: transparent !important;
    border-color: #333 !important;
}

.dark-mode .nav-tabs .nav-link.active {
    color: #ffffff !important;
    background: #222 !important;
    border-color: #444 #444 #222 #444 !important;
}

.dark-mode .nav-tabs {
    border-bottom-color: #444 !important;
}

/* Post Tags if present */
.dark-mode .post-tags .tag-label {
    color: #e0e0e0 !important;
}

.dark-mode .post-tags ul li a {
    background: #222 !important;
    color: #e0e0e0 !important;
    border-color: #333 !important;
}

/* ========================================
   TOP STORIES REDESIGN (Exact Match)
   ======================================== */
.section-top-stories {
    display: none !important;
}

.top-stories-header-row {
    border-left: 4px solid #ed1c1d;
    padding-left: 15px;
    margin-bottom: 30px;
}

.top-stories-main-title {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--vr-font-secondary);
    color: #000;
    margin: 0;
}

.featured-main-img-wrap img {
    height: 450px;
    object-fit: cover;
    border-radius: 0;
}

.top-stories-cat-label {
    color: #ed1c1d;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.top-stories-cat-label::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 14px;
    background: #ed1c1d;
    margin-right: 8px;
}

.featured-main-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    font-family: var(--vr-font-secondary);
}

.featured-main-title a {
    color: #000 !important;
    text-decoration: none;
}

.featured-main-title a:hover {
    color: #ed1c1d !important;
}

.top-stories-grid-item .img-wrap img {
    height: 180px;
    object-fit: cover;
    border-radius: 0;
}

.top-stories-cat-label-small {
    color: #ed1c1d;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.top-stories-cat-label-small::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 12px;
    background: #ed1c1d;
    margin-right: 6px;
}

.top-stories-grid-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    font-family: var(--vr-font-secondary);
    margin: 0;
}

.top-stories-grid-title a {
    color: #000 !important;
    text-decoration: none;
}

.top-stories-grid-title a:hover {
    color: #ed1c1d !important;
}

@media (max-width: 991px) {
    .featured-main-img-wrap img {
        height: auto;
    }

    .featured-main-title {
        font-size: 24px;
    }

    .top-stories-main-title {
        font-size: 26px;
    }
}

/* ========================================
   TAMIL NEWS SECTION - SCREENSHOT STYLE
   ======================================== */
.section-tamil-news {
    background: #fff;
    padding: 20px 0 40px 0;
}

.tamil-news-header {
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.tamil-news-title {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--vr-font-secondary);
    color: #000;
    margin: 0;
}

/* Main Featured Post (Big Image) */
.main-featured-post {
    margin-bottom: 15px;
}

.featured-img-wrapper {
    position: relative;
    overflow: hidden;
}

.featured-img-wrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.media-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(33, 150, 243, 0.9);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-post-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--vr-font-secondary);
    margin: 10px 0 0 0;
}

.featured-post-title a {
    color: #000;
    text-decoration: none;
}

.featured-post-title a:hover {
    color: #2196F3;
}

/* Thumbnail Posts (Horizontal Layout) */
.thumb-post-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.thumb-post-item:last-child {
    border-bottom: none;
}

.thumb-img {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    overflow: hidden;
}

.thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-badge-small {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: rgba(33, 150, 243, 0.9);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.thumb-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    font-family: var(--vr-font-secondary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thumb-title a {
    color: #333;
    text-decoration: none;
}

.thumb-title a:hover {
    color: #2196F3;
}

/* Advertisement Box */
.ad-space-box {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-label {
    color: #999;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Latest Videos Header */
.latest-videos-header {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--vr-font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.latest-videos-header svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .tamil-news-title {
        font-size: 16px;
    }

    .featured-img-wrapper img {
        height: 220px;
    }

    .featured-post-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .featured-img-wrapper img {
        height: 200px;
    }

    .featured-post-title {
        font-size: 16px;
    }

    .thumb-img {
        width: 80px;
        height: 60px;
    }

    .thumb-title {
        font-size: 14px;
    }
}

/* Tamil News Ad Container Styling */
.tamil-news-col-2 .container-bn {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.tamil-news-col-2 .bn-content {
    width: 100%;
    text-align: center;
}

.tamil-news-col-2 .bn-inner {
    display: inline-block;
    max-width: 100%;
}

/* Ensure ad images are centered */
.tamil-news-col-2 .bn-inner img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}




.featured-main-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin-top: 15px;
    font-family: var(--vr-font-primary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   TAMIL NEWS SECTION - DARK MODE SUPPORT
   ======================================== */
.dark-mode .section-tamil-news {
    background: #1a1a1a !important;
    border-color: #333 !important;
    color: #e0e0e0 !important;
}

.dark-mode .tamil-news-header {
    border-bottom: 2px solid #555 !important;
}

.dark-mode .tamil-news-title {
    color: #e0e0e0 !important;
    border-color: #555 !important;
}

.dark-mode .featured-post-title a {
    color: #e0e0e0 !important;
}

.dark-mode .featured-post-title a:hover {
    color: #ed1c1d !important;
}

.dark-mode .thumb-title a {
    color: #e0e0e0 !important;
}

.dark-mode .thumb-title a:hover {
    color: #ed1c1d !important;
}

.dark-mode .thumb-post-item {
    border-bottom: 1px solid #333 !important;
}

.dark-mode .main-featured-post,
.dark-mode .thumb-post-item {
    /* Ensure background stays dark if overridden */
    background-color: transparent !important;
}

/* Fix for ad space background in dark mode */
.dark-mode .tamil-news-col-2 .container-bn {
    background: transparent !important;
    border: none !important;
}

.dark-mode .ad-space-box {
    background: transparent !important;
    border: none !important;
}

/* ========================================
   CATEGORY BLOCK TYPE 1 - DARK MODE SUPPORT
   ======================================== */
.dark-mode .outlook-category-header-clean {
    border-top-color: #ed1c1d !important;
}

.dark-mode .outlook-category-header-clean .title,
.dark-mode .outlook-category-header-clean .title a {
    color: #fff !important;
}

/* Big Post Title in Style 1 */
.dark-mode .outlook-type-1-big-post .title a {
    color: #fff !important;
}

/* Small Post Title in Style 1 */
.dark-mode .outlook-type-1-small-col .outlook-type-1-small-post .title a {
    color: #fff !important;
}

/* Hover States for Style 1 */
.dark-mode .outlook-type-1-big-post .title a:hover,
.dark-mode .outlook-type-1-small-col .outlook-type-1-small-post .title a:hover {
    color: #ed1c1d !important;
}

/* Category Tag Color */
.dark-mode .outlook-credit .cat {
    color: #ed1c1d !important;
}

/* Separator lines */
.dark-mode .outlook-type-1-small-post {
    border-bottom: 1px solid #333;
}

/* Mega Menu Title Fix */
.mega-menu .menu-post-item .title a {
    font-size: 14px !important;
    line-height: 18px !important;
    display: block !important;
}

.mega-menu .menu-post-item .title a:hover {
    font-size: 14px !important;
    text-decoration: none !important;
}