/* ========================================================================== */
/* Visual updates (variables, reduced-motion, accessibility, debug overrides) */
/* Small, low-risk improvements applied on a new branch. Backups already made. */
:root {
    --brand-accent: #c41e3a;
    --brand-primary: #007cba;
    --muted: #888888;
    --text-color: #222222;
    --bg: #ffffff;
    --radius: 8px;
    --transition-fast: 0.18s;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* Accessible focus outline for interactive elements */
:focus {
    outline: 3px solid var(--brand-accent);
    outline-offset: 3px;
}

/* Neutralize temporary/forced debug styles that break visual integrity */
.mobile-nav-menu,
.mobile-nav-overlay,
.mobile-nav-menu.active,
.mobile-nav-overlay.active,
.mobile-nav-menu.show,
.mobile-nav-overlay.show,
#forced-mobile-menu,
#forced-mobile-overlay,
.mobile-nav-menu.loading,
.mobile-nav-menu.debug,
.mobile-header-container .mobile-menu-toggle {
    background: unset !important;
    color: unset !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Ensure forced mobile menu elements are hidden by default to avoid duplicates */
#forced-mobile-menu,
#forced-mobile-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* When explicitly activated by JS, .show will make them visible */
#forced-mobile-menu.show,
#forced-mobile-overlay.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* On desktop, hide mobile nav/menu elements to avoid blocking header/menu interactions */
@media (min-width: 769px) {
    .mobile-nav-menu,
    .mobile-nav-overlay,
    .newspaper-header .mobile-nav-menu,
    .newspaper-header .mobile-nav-overlay,
    #forced-mobile-menu,
    #forced-mobile-overlay,
    .mobile-header-container .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.newspaper-header .mobile-menu-toggle {
    background: transparent !important;
    color: inherit !important;
    border: none !important;
}

/* Disable marquee animation when reduced-motion is requested */
.newspaper-header .breaking-text,
.newspaper-header .mobile-breaking-text {
    /* keep default animation for users without reduced-motion preference */
}
@media (prefers-reduced-motion: reduce) {
    .newspaper-header .breaking-text,
    .newspaper-header .mobile-breaking-text {
        animation: none !important;
    }
}

/* ========================================================================== */

/**
 * Newspaper Elementor Widgets - Main Stylesheet
 * Version: 1.0.0
 */

/* ==========================================================================
   NEWSPAPER HEADER WIDGET
   ========================================================================== */

.newspaper-header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.newspaper-header {
    font-family: "Open Sans", sans-serif;
    color: #2c2c2c;
}

/* Header Top */
.newspaper-header .header {
    color: white;
    border-bottom: 3px solid #c41e3a;
}

.newspaper-header .header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.newspaper-header .header-date,
.newspaper-header .header-weather {
    color: #cccccc;
    font-size: 0.85rem;
}

.newspaper-header .header-weather .weather-icon {
    margin-left: 0.5rem;
    font-size: 1rem;
}

/* Masthead */
.newspaper-header .masthead {
    text-align: center;
    padding: 0.75rem 0 0.25rem;
    border-bottom: 1px solid #ddd;
}

.newspaper-header .masthead img {
    max-height: 50px;
    width: auto;
    height: auto;
    margin-bottom: 0.5rem;
    object-fit: contain;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Fix: prevent logo image from blocking nav links and ensure nav is on top */
.newspaper-header .masthead img {
    pointer-events: none; /* logo shouldn't block clicks to the horizontal menu */
}

.newspaper-header .main-nav {
    position: relative; /* create stacking context */
    z-index: 20; /* above the masthead (which uses default z-index) */
}

/* Logo Size Presets */
.newspaper-header .masthead img.logo-small {
    max-height: 40px;
    max-width: 120px;
}

.newspaper-header .masthead img.logo-medium {
    max-height: 60px;
    max-width: 180px;
}

.newspaper-header .masthead img.logo-large {
    max-height: 80px;
    max-width: 240px;
}

.newspaper-header .masthead img.logo-extra-large {
    max-height: 120px;
    max-width: 360px;
}

.newspaper-header .newspaper-title {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.15rem;
    text-transform: uppercase;
}

.newspaper-header .newspaper-subtitle {
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 0.25rem;
}

/* Navigation */
.newspaper-header .main-nav {
    padding: 0;
}

.newspaper-header .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.newspaper-header .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.newspaper-header .nav-item {
    border-right: 1px solid rgba(255,255,255,0.2);
}

.newspaper-header .nav-item:last-child {
    border-right: none;
}

.newspaper-header .nav-link {
    display: block;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Breaking News */
.newspaper-header .breaking-news {
    padding: 0.5rem 0;
    overflow: hidden;
}

.newspaper-header .breaking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.newspaper-header .breaking-label {
    background: white;
    padding: 0.25rem 0.75rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-right: 1rem;
    border-radius: 3px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.newspaper-header .breaking-text {
    font-weight: 600;
    animation: scroll-left 30s linear infinite;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.newspaper-header .breaking-text-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.newspaper-header .breaking-text-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to right, transparent, transparent);
    z-index: 5;
    pointer-events: none;
}

/* Mobile Menu Toggle */
.newspaper-header .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.newspaper-header .mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.newspaper-header .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.newspaper-header .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.newspaper-header .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.newspaper-header .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Header Layout */
.newspaper-header .mobile-header-container {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    border-bottom: 3px solid #c41e3a;
}

.newspaper-header .mobile-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.newspaper-header .mobile-logo-section img {
    max-height: 35px;
    width: auto;
}

.newspaper-header .mobile-title {
    font-family: "Merriweather", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Mobile Navigation Overlay */
.newspaper-header .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.newspaper-header .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.newspaper-header .mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.newspaper-header .mobile-nav-menu.active {
    right: 0;.newspaper-header .mobile-nav-header {
    padding: 1rem;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newspaper-header .mobile-nav-title {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.newspaper-header .mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.newspaper-header .mobile-nav-close:hover {
    background: rgba(255,255,255,0.1);
}

.newspaper-header .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newspaper-header .mobile-nav-item {
    border-bottom: 1px solid #333;
}

.newspaper-header .mobile-nav-link {
    display: block;
    padding: 1rem;
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.newspaper-header .mobile-nav-link:hover {
    background: #333;
    color: white;
    padding-left: 1.5rem;
}

/* Mobile Breaking News */
.newspaper-header .mobile-breaking-news {
    background: #c41e3a;
    padding: 0.5rem 1rem;
    overflow: hidden;
}

.newspaper-header .mobile-breaking-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.newspaper-header .mobile-breaking-label {
    background: white;
    color: #c41e3a;
    padding: 0.25rem 0.5rem;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 3px;
    flex-shrink: 0;
}

.newspaper-header .mobile-breaking-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    animation: scroll-left-mobile 25s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-left-mobile {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop header elements */
    .newspaper-header .header,
    .newspaper-header .masthead,
    .newspaper-header .main-nav,
    .newspaper-header .breaking-news {
        display: none !important;
    }
    
    /* Show mobile header */
    .newspaper-header .mobile-header-container {
        display: flex !important;
    }
    
    .newspaper-header .mobile-menu-toggle {
        display: block !important;
    }
    
    .newspaper-header .mobile-nav-overlay.active {
        display: block !important;
    }
    
    .newspaper-header .mobile-nav-menu {
        display: block !important;
    }
    
    .newspaper-header .mobile-breaking-news {
        display: block !important;
    }
    
    /* Adjust mobile logo sizes */
    .newspaper-header .mobile-logo-section img.logo-small {
        max-height: 30px;
    }
    
    .newspaper-header .mobile-logo-section img.logo-medium {
        max-height: 35px;
    }
    
    .newspaper-header .mobile-logo-section img.logo-large {
        max-height: 40px;
    }
    
    .newspaper-header .mobile-logo-section img.logo-extra-large {
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .newspaper-header .mobile-title {
        font-size: 1rem;
    }
    
    .newspaper-header .mobile-nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .newspaper-header .mobile-breaking-text {
        font-size: 0.8rem;
    }
    
    .newspaper-header .mobile-breaking-label {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Desktop styles remain the same for larger screens */
@media (min-width: 769px) {
    .newspaper-header .mobile-header-container,
    .newspaper-header .mobile-breaking-news {
        display: none !important;
    }
}

/* ==========================================================================
   NEWSPAPER FOOTER WIDGET
   ========================================================================== */

.newspaper-footer {
    background: #1a1a1a;
    color: white;
    border-top: 3px solid #c41e3a;
}

.newspaper-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.newspaper-footer .footer-section h4 {
    color: #c41e3a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newspaper-footer .footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.newspaper-footer .footer-section a:hover {
    color: #c41e3a;
}

/* Footer Bottom */
.newspaper-footer .footer-bottom {
    background: #111;
    border-top: 1px solid #333;
}

.newspaper-footer .footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newspaper-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newspaper-footer .footer-logo img {
    max-height: 40px;
    width: auto;
}

.newspaper-footer .footer-logo span {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.newspaper-footer .footer-copyright {
    text-align: right;
}

.newspaper-footer .footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.newspaper-footer .footer-copyright p:first-child {
    color: #ccc;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.newspaper-footer .footer-copyright p:last-child {
    color: #888;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .newspaper-footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .newspaper-footer .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newspaper-footer .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .newspaper-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newspaper-footer .footer-section h4 {
        font-size: 1rem;
    }
    
    .newspaper-footer .footer-section a {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   NEWSPAPER WHAT'S HAPPENING WIDGET
   ========================================================================== */

.whats-happening-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.whats-happening-widget .section-title-que {
    color: #1536b7;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.25em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    border-bottom: 3px solid #bbb;
    padding-bottom: 4px;
    text-align: left;
}

/* News List */
.whats-happening-widget .news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* News Cards */
.whats-happening-widget .news-card-small {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: unset;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 12px;
    background: #fff;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whats-happening-widget .news-card-small:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.02);
    z-index: 2;
}

.whats-happening-widget .news-card-small img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 6px;
}

.whats-happening-widget .news-info {
    padding: 12px;
    display: block;
}

/* Categories */
.whats-happening-widget .category {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 0;
    text-transform: capitalize;
    display: inline-block;
    margin-right: 10px;
}

.whats-happening-widget .cat-actualidad { color: #e53935; }
.whats-happening-widget .cat-nacional { color: #1976d2; }
.whats-happening-widget .cat-internacional { color: #388e3c; }
.whats-happening-widget .cat-opinion { color: #ff9800; }
.whats-happening-widget .cat-technology { color: #512da8; }
.whats-happening-widget .cat-fashion { color: #c2185b; }
.whats-happening-widget .cat-finance { color: #0097a7; }
.whats-happening-widget .cat-recipe { color: #8d6e63; }
.whats-happening-widget .cat-media { color: #455a64; }

/* Reading Time */
.whats-happening-widget .reading-time {
    font-size: 0.9em;
    color: #666;
    font-weight: normal;
    display: inline-block;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
}

/* Article Titles */
.whats-happening-widget .news-title-small {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    margin: 8px 0 0 0;
    line-height: 1.3;
    letter-spacing: 0.2px;
    color: #222;
    word-break: break-word;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.whats-happening-widget .news-title-small:hover {
    color: #1536b7;
}

/* No Posts Message */
.whats-happening-widget .no-posts-message {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.whats-happening-widget .no-posts-message p {
    margin: 0 0 0.5rem 0;
}

.whats-happening-widget .no-posts-message small {
    color: #999;
}

/* ==========================================================================
   NEWSPAPER MAIN NEWS WIDGET
   ========================================================================== */

.main-news {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    overflow: hidden;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.main-news:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.02);
    z-index: 2;
}

.main-news img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.main-news-content {
    padding: 20px 18px 18px 18px;
}

.main-news .category {
    font-size: 1em;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: capitalize;
    display: inline-block;
    margin-right: 10px;
}

.main-news .cat-portada { color: #e53935; }
.main-news .cat-actualidad { color: #e53935; }
.main-news .cat-nacional { color: #1976d2; }
.main-news .cat-internacional { color: #388e3c; }
.main-news .cat-opinion { color: #ff9800; }
.main-news .cat-technology { color: #512da8; }
.main-news .cat-fashion { color: #c2185b; }
.main-news .cat-finance { color: #0097a7; }
.main-news .cat-recipe { color: #8d6e63; }
.main-news .cat-media { color: #455a64; }

.main-news .reading-time {
    font-size: 0.85em;
    color: #666;
    font-weight: normal;
    display: inline-block;
    background: #f5f5f5;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.main-news-title {
    font-size: 2em;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.1;
    color: #000;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.main-news-title:hover {
    color: #1536b7;
}

.main-news-desc {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .main-news img {
        height: 250px;
    }
    
    .main-news-title {
        font-size: 1.6em;
    }
    
    .main-news-desc {
        font-size: 1em;
    }
    
    .main-news-content {
        padding: 16px 14px;
    }
}

@media (max-width: 480px) {
    .main-news img {
        height: 180px;
    }
    
    .main-news-title {
        font-size: 1.4em;
    }
    
    .main-news-desc {
        font-size: 0.95em;
    }
    
    .main-news-content {
        padding: 14px 12px;
    }
}

/* ==========================================================================
   NEWSPAPER BANNER WIDGET
   ========================================================================== */

.newspaper-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem 0;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.newspaper-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.newspaper-banner.hover-scale img:hover {
    transform: scale(1.05);
}

.newspaper-banner.hover-opacity img:hover {
    opacity: 0.8;
}

.newspaper-banner a {
    display: inline-block;
    text-decoration: none;
}

.newspaper-banner .banner-code {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ad Label */
.newspaper-banner .ad-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    z-index: 10;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
}

.newspaper-banner .ad-label-top-left {
    top: 8px;
    left: 8px;
}

.newspaper-banner .ad-label-top-center {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.newspaper-banner .ad-label-top-right {
    top: 8px;
    right: 8px;
}

.newspaper-banner .ad-label-bottom-center {
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive */
@media (max-width: 768px) {
    .newspaper-banner {
        padding: 1rem 0.5rem;
        margin: 1.5rem 0;
    }
    
    .newspaper-banner .ad-label {
        font-size: 0.7rem;
        padding: 1px 6px;
    }
}

@media (max-width: 480px) {
    .newspaper-banner {
        padding: 0.75rem 0.25rem;
        margin: 1rem 0;
    }
    
    .newspaper-banner img {
        border-radius: 4px;
    }
}

/* ==========================================================================
   NEWSPAPER BREAKING NEWS WIDGET
   ========================================================================== */

.breaking-news-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.breaking-news-widget .section-title-bar {
    display: flex;
    align-items: center;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    background: none;
}

.breaking-news-widget .section-title-bar::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 22px;
    background: #222;
    margin-right: 10px;
}

/* Breaking List */
.breaking-news-widget .breaking-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Breaking Cards */
.breaking-news-widget .breaking-card {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    min-height: 90px;
    align-items: center;
    padding: 7px;
    transition: all 0.3s ease;
}

.breaking-news-widget .breaking-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.02);
    z-index: 2;
}

.breaking-news-widget .breaking-card img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.breaking-news-widget .breaking-info {
    padding: 7px 5px 7px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* Category */
.breaking-news-widget .category {
    font-size: 0.9em;
    font-weight: bold;
    color: #e53935;
    margin-bottom: 4px;
    text-transform: capitalize;
}

/* Breaking Title */
.breaking-news-widget .breaking-title {
    font-size: 1.08em;
    font-weight: bold;
    margin: 0 0 6px 0;
    line-height: 1.1;
    color: #000;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.breaking-news-widget .breaking-title:hover {
    color: #1536b7;
}

/* Meta Information */
.breaking-news-widget .breaking-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.breaking-news-widget .news-date {
    font-size: 0.85em;
    color: #666;
    font-weight: normal;
}

.breaking-news-widget .reading-time {
    font-size: 0.8em;
    color: #666;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
}

/* No Posts Message */
.breaking-news-widget .no-posts-message {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.breaking-news-widget .no-posts-message p {
    margin: 0 0 0.5rem 0;
}

.breaking-news-widget .no-posts-message small {
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .breaking-news-widget .breaking-card {
        min-height: 80px;
        padding: 5px;
    }
    
    .breaking-news-widget .breaking-card img {
        width: 80px;
        height: 60px;
    }
    
    .breaking-news-widget .breaking-title {
        font-size: 1em;
    }
    
    .breaking-news-widget .section-title-bar {
        font-size: 1em;
    }
    
    .breaking-news-widget .section-title-bar::before {
        width: 4px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .breaking-news-widget .breaking-list {
        gap: 10px;
    }
    
    .breaking-news-widget .breaking-card {
        min-height: 70px;
        gap: 8px;
    }
    
    .breaking-news-widget .breaking-card img {
        width: 70px;
        height: 50px;
    }
    
    .breaking-news-widget .breaking-title {
        font-size: 0.95em;
    }
    
    .breaking-news-widget .breaking-info {
        padding: 5px 3px 5px 0;
    }
}

/* ==========================================================================
   NEWSPAPER OPINION WIDGET
   ========================================================================== */

.opinion-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.opinion-widget .section-title-bar {
    display: flex;
    align-items: center;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0 12px 0;
    background: none;
}

.opinion-widget .section-title-bar::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 22px;
    background: #222;
    margin-right: 10px;
}

/* Opinion List */
.opinion-widget .opinion-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Opinion Cards */
.opinion-widget .opinion-card {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    min-height: 60px;
    padding: 7px;
    transition: all 0.3s ease;
}

.opinion-widget .opinion-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.02);
    z-index: 2;
}

.opinion-widget .opinion-card img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.opinion-widget .opinion-info {
    padding: 7px 5px 7px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* Category */
.opinion-widget .category {
    font-size: 0.9em;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 4px;
    text-transform: capitalize;
}

/* Opinion Title */
.opinion-widget .opinion-title {
    font-size: 1em;
    font-weight: bold;
    margin: 0 0 6px 0;
    line-height: 1.1;
    color: #000;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.opinion-widget .opinion-title:hover {
    color: #1536b7;
}

/* Meta Information */
.opinion-widget .opinion-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.opinion-widget .news-date {
    font-size: 0.85em;
    color: #666;
    font-weight: normal;
}

.opinion-widget .reading-time {
    font-size: 0.8em;
    color: #666;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
}

/* More Opinion Button */
.opinion-widget .more-opinion-btn {
    background: #222;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
    margin: 5px 0 15px 0;
    text-decoration: none;
}

.opinion-widget .more-opinion-btn:hover {
    background: #444;
}

.opinion-widget .menu-icon {
    font-size: 1.2em;
}

/* Square Banner */
.opinion-widget .square-banner {
    width: 100%;
    height: 250px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    overflow: hidden;
}

.opinion-widget .square-banner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.opinion-widget .square-banner .banner-code {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* No Posts Message */
.opinion-widget .no-posts-message {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.opinion-widget .no-posts-message p {
    margin: 0 0 0.5rem 0;
}

.opinion-widget .no-posts-message small {
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .opinion-widget .opinion-card {
        min-height: 70px;
        padding: 5px;
    }
    
    .opinion-widget .opinion-card img {
        width: 80px;
        height: 60px;
    }
    
    .opinion-widget .opinion-title {
        font-size: 0.95em;
    }
    
    .opinion-widget .section-title-bar {
        font-size: 1em;
        margin: 8px 0 10px 0;
    }
    
    .opinion-widget .section-title-bar::before {
        width: 4px;
        height: 18px;
        margin-right: 8px;
    }
    
    .opinion-widget .square-banner {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .opinion-widget .opinion-list {
        gap: 10px;
    }
    
    .opinion-widget .opinion-card {
        min-height: 60px;
        gap: 8px;
    }
    
    .opinion-widget .opinion-card img {
        width: 70px;
        height: 50px;
    }
    
    .opinion-widget .opinion-title {
        font-size: 0.9em;
    }
    
    .opinion-widget .opinion-info {
        padding: 5px 3px 5px 0;
    }
    
    .opinion-widget .square-banner {
        height: 150px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whats-happening-widget .news-card-small img {
        height: 100px;
    }
    
    .whats-happening-widget .section-title-que {
        font-size: 1.1em;
    }
    
    .whats-happening-widget .news-title-small {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .whats-happening-widget .news-list {
        gap: 20px;
    }
    
    .whats-happening-widget .news-card-small img {
        height: 80px;
    }
    
    .whats-happening-widget .news-info {
        padding: 10px;
    }
/*
 ==========================================================================
   NEWSPAPER INTEREST WIDGET
   ========================================================================== */

.interest-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.interest-widget .section-title-bar {
    display: flex;
    align-items: center;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0 12px 0;
    background: none;
}

.interest-widget .section-title-bar::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 22px;
    background: #222;
    margin-right: 10px;
}

/* Interest List */
.interest-widget .interest-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Interest Cards */
.interest-widget .interest-card {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    min-height: 80px;
    padding: 7px;
    transition: all 0.3s ease;
}

.interest-widget .interest-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.02);
    z-index: 2;
}

.interest-widget .interest-card img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.interest-widget .interest-info {
    padding: 7px 5px 7px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

/* Category */
.interest-widget .category {
    font-size: 0.9em;
    font-weight: bold;
    color: #2196f3;
    margin-bottom: 4px;
    text-transform: capitalize;
}

/* Interest Title */
.interest-widget .interest-title {
    font-size: 1em;
    font-weight: bold;
    margin: 0 0 6px 0;
    line-height: 1.1;
    color: #000;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.interest-widget .interest-title:hover {
    color: #1536b7;
}

/* Meta Information */
.interest-widget .interest-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.interest-widget .news-date {
    font-size: 0.85em;
    color: #666;
    font-weight: normal;
}

.interest-widget .reading-time {
    font-size: 0.8em;
    color: #666;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
}

/* No Posts Message */
.interest-widget .no-posts-message {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.interest-widget .no-posts-message p {
    margin: 0 0 0.5rem 0;
}

.interest-widget .no-posts-message small {
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .interest-widget .interest-card {
        min-height: 70px;
        padding: 5px;
    }
    
    .interest-widget .interest-card img {
        width: 80px;
        height: 60px;
    }
    
    .interest-widget .interest-title {
        font-size: 0.95em;
    }
    
    .interest-widget .section-title-bar {
        font-size: 1em;
        margin: 8px 0 10px 0;
    }
    
    .interest-widget .section-title-bar::before {
        width: 4px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .interest-widget .interest-list {
        gap: 10px;
    }
    
    .interest-widget .interest-card {
        min-height: 60px;
        gap: 8px;
    }
    
    .interest-widget .interest-card img {
        width: 70px;
        height: 50px;
    }
    
    .interest-widget .interest-title {
        font-size: 0.9em;
    }
    
    .interest-widget .interest-info {
        padding: 5px 3px 5px 0;
    }
/* ====
======================================================================
   NEWSPAPER INTEREST WIDGET
   ========================================================================== */

.interest-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.interest-widget .section-title-bar {
    display: flex;
    align-items: center;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0 20px 0;
    background: none;
}

.interest-widget .section-title-bar::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 22px;
    background: #222;
    margin-right: 10px;
}

/* Interest Grid */
.interest-widget .interest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Interest Cards */
.interest-widget .interest-card-grid {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.interest-widget .interest-card-grid:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.interest-widget .interest-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Interest Image */
.interest-widget .interest-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.interest-widget .interest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.interest-widget .interest-card-grid:hover .interest-image img {
    transform: scale(1.05);
}

/* Interest Content */
.interest-widget .interest-content {
    padding: 16px;
}

/* Category */
.interest-widget .category {
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Category Colors */
.interest-widget .category {
    color: #2196f3;
}

/* Interest Title */
.interest-widget .interest-title {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 0 12px 0;
    line-height: 1.3;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
}

.interest-widget .interest-card-link:hover .interest-title {
    color: #1536b7;
}

/* Meta Information */
.interest-widget .news-date {
    font-size: 0.85em;
    color: #666;
    font-weight: normal;
    margin-bottom: 4px;
}

.interest-widget .reading-time {
    font-size: 0.8em;
    color: #666;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* No Posts Message */
.interest-widget .no-posts-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    color: #666;
}

.interest-widget .no-posts-message p {
    margin: 0 0 0.5rem 0;
}

.interest-widget .no-posts-message small {
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .interest-widget .interest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .interest-widget .interest-image {
        height: 140px;
    }
    
    .interest-widget .interest-content {
        padding: 12px;
    }
    
    .interest-widget .interest-title {
        font-size: 1em;
    }
    
    .interest-widget .section-title-bar {
        font-size: 1em;
        margin: 8px 0 15px 0;
    }
    
    .interest-widget .section-title-bar::before {
        width: 4px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .interest-widget .interest-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .interest-widget .interest-image {
        height: 160px;
    }
    
    .interest-widget .interest-content {
        padding: 10px;
    }
    
    .interest-widget .interest-title {
        font-size: 0.95em;
        min-height: auto;
        -webkit-line-clamp: 3;
    }
/* =====
=====================================================================
   NEWSPAPER COLUMNISTS WIDGET
   ========================================================================== */

.columnists-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.columnists-widget .section-title-bar {
    display: flex;
    align-items: center;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0 12px 0;
    background: none;
}

.columnists-widget .section-title-bar::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 22px;
    background: #222;
    margin-right: 10px;
}

/* Columnists List */
.columnists-widget .columnists-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Columnist Cards */
.columnists-widget .columnist-card {
    display: flex;
    gap: 12px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    min-height: 70px;
    padding: 10px;
    transition: all 0.3s ease;
    align-items: center;
}

.columnists-widget .columnist-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.02);
    z-index: 2;
}

/* Columnist Info */
.columnists-widget .columnist-info {
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

/* Featured Image Circle */
.columnists-widget .featured-image-circle {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    overflow: hidden;
    border: 2px solid #ff9800;
    flex-shrink: 0;
    position: relative;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.columnists-widget .featured-image-circle img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50% !important;
    transition: transform 0.3s ease;
    display: block !important;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
}

.columnists-widget .columnist-card:hover .featured-image-circle img {
    transform: scale(1.05);
}

/* Category */
.columnists-widget .category {
    font-size: 0.85em;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 4px;
    text-transform: capitalize;
}

/* Columnist Title */
.columnists-widget .columnist-title {
    font-size: 1em;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.2;
    color: #000;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.columnists-widget .columnist-title:hover {
    color: #1536b7;
}

/* Meta Information */
.columnists-widget .columnist-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.columnists-widget .author-name {
    font-size: 0.85em;
    color: #666;
    font-weight: 600;
    font-style: italic;
}

.columnists-widget .news-date {
    font-size: 0.8em;
    color: #888;
    font-weight: normal;
}

.columnists-widget .reading-time {
    font-size: 0.75em;
    color: #666;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
    margin-top: 2px;
}

/* No Posts Message */
.columnists-widget .no-posts-message {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.columnists-widget .no-posts-message p {
    margin: 0 0 0.5rem 0;
}

.columnists-widget .no-posts-message small {
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .columnists-widget .columnist-card {
        min-height: 60px;
        padding: 8px;
        gap: 10px;
    }
    
    .columnists-widget .featured-image-circle {
        width: 45px !important;
        height: 45px !important;
        border-radius: 50% !important;
    }
    
    .columnists-widget .featured-image-circle img {
        width: 100% !important;
        height: 100% !important;
        border-radius: 50% !important;
    }
    
    .columnists-widget .columnist-title {
        font-size: 0.95em;
    }
    
    .columnists-widget .section-title-bar {
        font-size: 1em;
        margin: 8px 0 10px 0;
    }
    
    .columnists-widget .section-title-bar::before {
        width: 4px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .columnists-widget .columnists-list {
        gap: 10px;
    }
    
    .columnists-widget .columnist-card {
        min-height: 55px;
        gap: 8px;
        padding: 6px;
    }
    
    .columnists-widget .featured-image-circle {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
    }
    
    .columnists-widget .featured-image-circle img {
        width: 100% !important;
        height: 100% !important;
        border-radius: 50% !important;
    }
    
    .columnists-widget .columnist-title {
        font-size: 0.9em;
    }
    
    .columnists-widget .columnist-info {
        padding: 1px 0;
    }
    
    .columnists-widget .author-name {
        font-size: 0.8em;
    }
    
.columnists-widget .news-date {
        font-size: 0.75em;
    }
/* Force circular images - Override any conflicting styles */
.columnists-widget .featured-image-circle,
.columnists-widget .featured-image-circle * {
    box-sizing: border-box !important;
}

.columnists-widget .featured-image-circle {
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    clip-path: circle(50%) !important;
}
/* FORCE CIRCULAR IMAGES - MAXIMUM OVERRIDE */
.columnists-widget .featured-image-circle img {
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
    clip-path: circle(50%) !important;
aspect-ratio: 1 / 1 !important;
}
/* FORCE CIRCULAR IMAGES - MAXIMUM OVERRIDE */
.elementor-widget-newspaper_columnists .columnists-widget .featured-image-circle,
.columnists-widget .featured-image-circle,
div.columnists-widget .featured-image-circle,
body .columnists-widget .featured-image-circle {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    background: #f5f5f5 !important;
    border: 2px solid #ff9800 !important;
    clip-path: circle(50% at 50% 50%) !important;
    -webkit-clip-path: circle(50% at 50% 50%) !important;
}

.elementor-widget-newspaper_columnists .columnists-widget .featured-image-circle img,
.columnists-widget .featured-image-circle img,
div.columnists-widget .featured-image-circle img,
body .columnists-widget .featured-image-circle img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transition: transform 0.3s ease !important;
    clip-path: circle(50% at 50% 50%) !important;
    -webkit-clip-path: circle(50% at 50% 50%) !important;
}

/* Responsive circular images with maximum override */
@media (max-width: 768px) {
    .elementor-widget-newspaper_columnists .columnists-widget .featured-image-circle,
    .columnists-widget .featured-image-circle,
    div.columnists-widget .featured-image-circle,
    body .columnists-widget .featured-image-circle {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 480px) {
    .elementor-widget-newspaper_columnists .columnists-widget .featured-image-circle,
    .columnists-widget .featured-image-circle,
    div.columnists-widget .featured-image-circle,
    body .columnists-widget .featured-image-circle {
        width: 40px !important;
        height: 40px !important;
    }
}/*
 FORCE PROPER IMAGE DISPLAY - RESPECTS CUSTOM BORDER RADIUS */
.elementor-widget-newspaper_columnists .columnists-widget .featured-image-circle,
.columnists-widget .featured-image-circle,
div.columnists-widget .featured-image-circle,
body .columnists-widget .featured-image-circle {
    width: 50px !important;
    height: 50px !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    background: #f5f5f5 !important;
    border: 2px solid #ff9800 !important;
}

.elementor-widget-newspaper_columnists .columnists-widget .featured-image-circle img,
.columnists-widget .featured-image-circle img,
div.columnists-widget .featured-image-circle img,
body .columnists-widget .featured-image-circle img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transition: transform 0.3s ease !important;
}

/* Default circular style when no custom radius is set */
.columnists-widget .featured-image-circle:not([style*="border-radius"]) {
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
}

.columnists-widget .featured-image-circle:not([style*="border-radius"]) img {
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
}

/* Responsive with custom border radius support */
@media (max-width: 768px) {
    .elementor-widget-newspaper_columnists .columnists-widget .featured-image-circle,
    .columnists-widget .featured-image-circle,
    div.columnists-widget .featured-image-circle,
    body .columnists-widget .featured-image-circle {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 480px) {
    .elementor-widget-newspaper_columnists .columnists-widget .featured-image-circle,
    .columnists-widget .featured-image-circle,
    div.columnists-widget .featured-image-circle,
    body .columnists-widget .featured-image-circle {
        width: 40px !important;
        height: 40px !important;
    }
}/* ========
==================================================================
   NEWSPAPER COLUMNISTS WIDGET - HORIZONTAL LAYOUT
   ========================================================================== */

.columnists-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.columnists-widget .section-title-bar {
    display: flex;
    align-items: center;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0 12px 0;
    background: none;
}

.columnists-widget .section-title-bar::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 22px;
    background: #222;
    margin-right: 10px;
}

/* Columnists List */
.columnists-widget .columnists-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Columnist Cards - SIMPLE HORIZONTAL LAYOUT */
.columnists-widget .columnist-card {
    display: flex !important;
    align-items: flex-start !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    /* gap and margin-bottom will be controlled by Elementor */
}

/* Featured Image Circle - LEFT SIDE */
.columnists-widget .featured-image-circle {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    margin-right: 10px !important;
    border: 3px solid #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

/* Columnist Info - RIGHT SIDE */
.columnists-widget .columnist-info {
    flex: 1 !important;
    padding: 0 !important;
}

.columnists-widget .featured-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: block;
}

.columnists-widget .columnist-card:hover .featured-image-circle img {
    transform: scale(1.05);
}

/* Category */
.columnists-widget .category {
    font-size: 0.85em;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 4px;
    text-transform: capitalize;
}

/* Columnist Title */
.columnists-widget .columnist-title {
    font-size: 1em;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.2;
    color: #000;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.columnists-widget .columnist-title:hover {
    color: #1536b7;
}

/* Meta Information */
.columnists-widget .columnist-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.columnists-widget .author-name {
    font-size: 0.85em;
    color: #666;
    font-weight: 600;
    font-style: italic;
}

.columnists-widget .news-date {
    font-size: 0.8em;
    color: #888;
    font-weight: normal;
}

.columnists-widget .reading-time {
    font-size: 0.75em;
    color: #666;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-block;
    width: fit-content;
    margin-top: 2px;
}

/* No Posts Message */
.columnists-widget .no-posts-message {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.columnists-widget .no-posts-message p {
    margin: 0 0 0.5rem 0;
}

.columnists-widget .no-posts-message small {
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .columnists-widget .columnist-card {
        min-height: 60px;
        padding: 8px;
        gap: 10px;
    }
    
    .columnists-widget .featured-image-circle {
        width: 45px;
        height: 45px;
    }
    
    .columnists-widget .columnist-title {
        font-size: 0.95em;
    }
    
    .columnists-widget .section-title-bar {
        font-size: 1em;
        margin: 8px 0 10px 0;
    }
    
    .columnists-widget .section-title-bar::before {
        width: 4px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .columnists-widget .columnists-list {
        gap: 10px;
    }
    
    .columnists-widget .columnist-card {
        min-height: 55px;
        gap: 8px;
        padding: 6px;
    }
    
    .columnists-widget .featured-image-circle {
        width: 40px;
        height: 40px;
    }
    
    .columnists-widget .columnist-title {
        font-size: 0.9em;
    }
    
    .columnists-widget .columnist-info {
        padding: 1px 0;
    }
    
    .columnists-widget .author-name {
        font-size: 0.8em;
    }
    
    .columnists-widget .news-date {
        font-size: 0.75em;
    }
}/* Reduce s
pacing between columnist items */
.columnists-widget .columnists-list {
    gap: 5px !important;
}

.columnists-widget .columnist-card {
    margin-bottom: 5px !important;
}

.columnists-widget .columnist-card:last-child {
    margin-bottom: 0 !important;
}/* Spa
cing Controls Override */
.columnists-widget .columnist-meta {
    display: flex !important;
    flex-direction: column !important;
}

/* Remove default margins that might interfere */
.columnists-widget .columnist-title {
    margin-top: 0 !important;
}

.columnists-widget .category {
    margin-top: 0 !important;
}

    .columnists-widget .author-name,
    .columnists-widget .news-date,
    .columnists-widget .reading-time {
    margin: 0 !important;
}
/* Default spacing values - Elementor controls will override these */
.columnists-widget .columnists-list {
    gap: 8px;
}

.columnists-widget .columnist-card {
    gap: 12px;
    margin-bottom: 8px;
}

.columnists-widget .columnist-card:last-child {
    margin-bottom: 0;
}

.columnists-widget .columnist-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.columnists-widget .columnist-title {
    margin-bottom: 8px;
    margin-top: 0;
}

.columnists-widget .category {
    margin-top: 0;
}

.columnists-widget .author-name,
.columnists-widget .news-date,
.columnists-widget .reading-time {
    margin: 0;
}/* =
=========================================================================
   NEWSPAPER SPORTS WIDGET
   ========================================================================== */

.sports-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.sports-widget .section-title-bar {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    background: none;
}

/* Sports List */
.sports-widget .sports-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Sports Cards */
.sports-widget .sports-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    padding: 12px;
    transition: all 0.3s ease;
}

.sports-widget .sports-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* Sports Content - Left side */
.sports-widget .sports-content {
    flex: 1;
    padding-right: 8px;
}

/* Sports Title */
.sports-widget .sports-title {
    font-size: 1.05em;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.25;
    color: #2d2d2d;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.sports-widget .sports-title:hover {
    color: #8b5cf6;
}

/* Sports Date */
.sports-widget .sports-date {
    font-size: 0.85em;
    color: #999;
    font-weight: normal;
    margin: 0;
}

/* Sports Image - Right side */
.sports-widget .sports-image {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.sports-widget .sports-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.sports-widget .sports-card:hover .sports-image img {
    transform: scale(1.05);
}

/* More Sports Button */
.sports-widget .more-sports-btn {
    background: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 600;
}

.sports-widget .more-sports-btn:hover {
    background: #555;
    color: #fff;
}

.sports-widget .menu-icon {
    font-size: 1.2em;
}

/* No Posts Message */
.sports-widget .no-posts-message {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    color: #666;
}

.sports-widget .no-posts-message p {
    margin: 0 0 0.5rem 0;
}

.sports-widget .no-posts-message small {
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .sports-widget .sports-card {
        padding: 10px;
        gap: 10px;
    }
    
    .sports-widget .sports-image {
        width: 85px;
        height: 68px;
    }
    
    .sports-widget .sports-title {
        font-size: 1em;
    }
    
    .sports-widget .section-title-bar {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .sports-widget .sports-list {
        gap: 8px;
    }
    
    .sports-widget .sports-card {
        padding: 8px;
        gap: 8px;
    }
    
    .sports-widget .sports-image {
        width: 70px;
        height: 56px;
    }
    
    .sports-widget .sports-title {
        font-size: 0.95em;
    }
    
    .sports-widget .sports-content {
        padding-right: 5px;
    }
    
    .sports-widget .more-sports-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}/* ====
======================================================================
   NEWSPAPER VIDEOS WIDGET
   ========================================================================== */

.videos-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.videos-widget .videos-section-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    position: relative;
    padding-left: 15px;
}

.videos-widget .videos-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ff0000;
}

/* Videos Grid */
.videos-widget .videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

/* Video Cards */
.videos-widget .video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.videos-widget .video-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Video Thumbnail */
.videos-widget .video-thumbnail {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #000;
}

.videos-widget .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.videos-widget .video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

/* Play Button */
.videos-widget .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.videos-widget .video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.videos-widget .play-button svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Video Info */
.videos-widget .video-info {
    padding: 12px;
}

/* Video Category */
.videos-widget .video-category {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

/* Category Colors */
.videos-widget .video-category {
    color: #ff6b35;
}

/* Video Title */
.videos-widget .video-title {
    font-size: 0.95em;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
}

/* Video Date */
.videos-widget .video-date {
    font-size: 0.8em;
    color: #888;
    margin: 0;
}

/* View All Button */
.videos-widget .view-all-button-container {
    text-align: center;
    margin-top: 20px;
}

.videos-widget .view-all-videos-btn {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.videos-widget .view-all-videos-btn:hover {
    background: #555;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* No Videos Message */
.videos-widget .no-videos-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.videos-widget .no-videos-message p {
    margin: 0 0 0.5rem 0;
    font-size: 1.1em;
}

.videos-widget .no-videos-message small {
    color: #999;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .videos-widget .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .videos-widget .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .videos-widget .video-thumbnail {
        height: 140px;
    }
    
    .videos-widget .video-info {
        padding: 10px;
    }
    
    .videos-widget .video-title {
        font-size: 0.9em;
    }
    
    .videos-widget .videos-section-title {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .videos-widget .videos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .videos-widget .video-thumbnail {
        height: 180px;
    }
    
    .videos-widget .video-info {
        padding: 12px;
    }
    
    .videos-widget .video-title {
        font-size: 1em;
        -webkit-line-clamp: 3;
        min-height: 3.9em;
    }
    
    .videos-widget .videos-section-title {
        font-size: 1em;
        padding-left: 12px;
    }
    
    .videos-widget .videos-section-title::before {
        width: 3px;
    }
    
    .videos-widget .view-all-videos-btn {
        padding: 10px 20px;
        font-size: 0.85em;
    }
}/* ==
========================================================================
   YOUTUBE MODAL STYLES
   ========================================================================== */

/* Modal Overlay */
.youtube-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.youtube-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.youtube-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.youtube-modal-overlay.active .youtube-modal-content {
    transform: scale(1);
}

/* Close Button */
.youtube-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.youtube-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* YouTube Iframe */
.youtube-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Body scroll lock */
body.youtube-modal-open {
    overflow: hidden;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .youtube-modal-content {
        width: 95%;
        margin: 0 auto;
    }
    
    .youtube-modal-close {
        top: -35px;
        font-size: 25px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .youtube-modal-content {
        width: 98%;
        border-radius: 4px;
    }
    
    .youtube-modal-close {
        top: -30px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
}

/* Accessibility improvements */
.youtube-modal-overlay:focus {
    outline: none;
}

.youtube-modal-close:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}/*
 ==========================================================================
   NEWSPAPER MORE NEWS WIDGET
   ========================================================================== */

.more-news-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.more-news-widget .more-news-section-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    position: relative;
    padding-left: 15px;
}

.more-news-widget .more-news-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #222;
}

/* Main Container */
.more-news-widget .more-news-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.more-news-widget .more-news-container.banner-left {
    flex-direction: row;
}

.more-news-widget .more-news-container.banner-right {
    flex-direction: row-reverse;
}

/* Content Area */
.more-news-widget .more-news-content {
    flex: 1;
    min-width: 0;
}

/* News Grid */
.more-news-widget .more-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* News Cards */
.more-news-widget .news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.more-news-widget .news-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* News Image */
.more-news-widget .news-image {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.more-news-widget .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.more-news-widget .news-card:hover .news-image img {
    transform: scale(1.05);
}

/* Live Badge */
.more-news-widget .live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff0000;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.7em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

/* News Info */
.more-news-widget .news-info {
    padding: 12px;
}

/* News Category */
.more-news-widget .news-category {
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    color: #666;
}

.more-news-widget .news-category.live-category {
    color: #ff0000;
}

/* News Title */
.more-news-widget .news-title {
    font-size: 0.9em;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: color 0.3s ease;
}

.more-news-widget .news-title:hover {
    color: #0066cc;
}

/* Reading Time */
.more-news-widget .reading-time {
    font-size: 0.75em;
    color: #888;
    margin: 0;
}

/* Sidebar */
.more-news-widget .more-news-sidebar {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sidebar Banners */
.more-news-widget .sidebar-banner {
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.more-news-widget .sidebar-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.more-news-widget .sidebar-banner:hover img {
    transform: scale(1.02);
}

.more-news-widget .sidebar-banner .banner-code {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* No News Message */
.more-news-widget .no-news-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.more-news-widget .no-news-message p {
    margin: 0 0 0.5rem 0;
    font-size: 1.1em;
}

.more-news-widget .no-news-message small {
    color: #999;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .more-news-widget .more-news-sidebar {
        width: 250px;
    }
    
    .more-news-widget .more-news-container {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .more-news-widget .more-news-container {
        flex-direction: column !important;
        gap: 20px;
    }
    
    .more-news-widget .more-news-sidebar {
        width: 100%;
        flex-direction: row;
        gap: 15px;
        overflow-x: auto;
    }
    
    .more-news-widget .sidebar-banner {
        min-width: 250px;
        height: 200px !important;
    }
    
    .more-news-widget .more-news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .more-news-widget .news-image {
        height: 160px;
    }
    
    .more-news-widget .news-title {
        font-size: 1em;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .more-news-widget .more-news-sidebar {
        flex-direction: column;
    }
    
    .more-news-widget .sidebar-banner {
        min-width: auto;
        height: 180px !important;
    }
    
    .more-news-widget .news-image {
        height: 140px;
    }
    
    .more-news-widget .news-info {
        padding: 10px;
    }
    
    .more-news-widget .more-news-section-title {
        font-size: 1.1em;
        padding-left: 12px;
    }
    
    .more-news-widget .more-news-section-title::before {
        width: 3px;
    }
}/* 
==========================================================================
   NEWSPAPER MORE NEWS WIDGET
   ========================================================================== */

.more-news-widget {
    font-family: "Open Sans", sans-serif;
}

/* Section Title */
.more-news-widget .more-news-section-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.4em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
    position: relative;
    padding-left: 15px;
}

.more-news-widget .more-news-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #007cba;
}

/* Main Container - 4 Column Layout */
.more-news-widget .more-news-container {
    display: grid;
    gap: 25px;
    align-items: start;
}

/* Banner Left Layout */
.more-news-widget .more-news-container.banner-left {
    grid-template-columns: 300px 1fr;
    grid-template-areas: "sidebar content";
}

/* Banner Right Layout */
.more-news-widget .more-news-container.banner-right {
    grid-template-columns: 1fr 300px;
    grid-template-areas: "content sidebar";
}

/* Content Area - 3 Column Grid for News */
.more-news-widget .more-news-content {
    grid-area: content;
}

.more-news-widget .more-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

/* Sidebar Area */
.more-news-widget .more-news-sidebar {
    grid-area: sidebar;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* News Cards - Square Format */
.more-news-widget .news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.more-news-widget .news-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* News Image - Square Format */
.more-news-widget .news-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}

.more-news-widget .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.more-news-widget .news-card:hover .news-image img {
    transform: scale(1.05);
}

/* Live Badge */
.more-news-widget .live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: white;
    font-size: 0.7em;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* News Info */
.more-news-widget .news-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* News Category */
.more-news-widget .news-category {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    color: #007cba;
    letter-spacing: 0.5px;
    margin: 0;
}

.more-news-widget .news-category.live-category {
    color: #ff0000;
}

/* News Title */
.more-news-widget .news-title {
    font-size: 0.95em;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    text-decoration: none;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
    flex: 1;
}

.more-news-widget .news-title:hover {
    color: #007cba;
}

/* Reading Time */
.more-news-widget .reading-time {
    font-size: 0.75em;
    color: #888;
    margin: 0;
    align-self: flex-start;
}

/* Sidebar Banners */
.more-news-widget .sidebar-banner {
    width: 100%;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.more-news-widget .sidebar-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.more-news-widget .sidebar-banner:hover img {
    transform: scale(1.02);
}

.more-news-widget .sidebar-banner a {
    display: block;
    width: 100%;
    height: 100%;
}

.more-news-widget .banner-code {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* No News Message */
.more-news-widget .no-news-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.more-news-widget .no-news-message p {
    margin: 0 0 0.5rem 0;
}

.more-news-widget .no-news-message small {
    color: #999;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .more-news-widget .more-news-container.banner-left,
    .more-news-widget .more-news-container.banner-right {
        grid-template-columns: 250px 1fr;
    }
    
    .more-news-widget .more-news-grid {
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .more-news-widget .more-news-container.banner-left,
    .more-news-widget .more-news-container.banner-right {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "content"
            "sidebar";
    }
    
    .more-news-widget .more-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .more-news-widget .more-news-sidebar {
        flex-direction: row;
        gap: 15px;
    }
    
    .more-news-widget .sidebar-banner {
        flex: 1;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .more-news-widget .more-news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .more-news-widget .more-news-sidebar {
        flex-direction: column;
        gap: 15px;
    }
    
    .more-news-widget .sidebar-banner {
        height: 200px !important;
    }
    
    .more-news-widget .news-info {
        padding: 12px;
    }
    
    .more-news-widget .news-title {
        font-size: 0.9em;
        -webkit-line-clamp: 2;
    }
    
    .more-news-widget .more-news-section-title {
        font-size: 1.2em;
        margin-bottom: 20px;
        padding-left: 12px;
    }
    
    .more-news-widget .more-news-section-title::before {
        width: 3px;
    }
}

@media (max-width: 480px) {
    .more-news-widget .news-info {
        padding: 10px;
        gap: 6px;
    }
    
    .more-news-widget .news-title {
        font-size: 0.85em;
    }
    
    .more-news-widget .news-category {
        font-size: 0.75em;
    }
    
    .more-news-widget .reading-time {
        font-size: 0.7em;
    }
    
    .more-news-widget .live-badge {
        font-size: 0.65em;
        padding: 3px 6px;
        top: 8px;
        left: 8px;
    }
    
    .more-news-widget .sidebar-banner {
        height: 150px !important;
    }
}

/* Special styling for equal height cards */
.more-news-widget .more-news-grid {
    align-items: stretch;
}

.more-news-widget .news-card {
    display: flex;
    flex-direction: column;
}

.more-news-widget .news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.more-news-widget .news-title {
    flex: 1;
    display: flex;
    align-items: flex-start;
}
/* ==
========================================================================
   NEWSPAPER MORE NEWS WIDGET - 4 COLUMN LAYOUT (3 NEWS + 1 BANNER)
   ========================================================================== */

.more-news-widget {
    font-family: "Open Sans", sans-serif;
    width: 100%;
}

/* Section Title */
.more-news-widget .more-news-section-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.4em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
    position: relative;
    padding-left: 15px;
}

.more-news-widget .more-news-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #007cba;
}

/* Main Container - 4 Column Layout (3 News + 1 Banner) */
.more-news-widget .more-news-container {
    display: grid;
    gap: 25px;
    align-items: start;
    width: 100%;
}

/* Banner Left Layout: Banner | News | News | News */
.more-news-widget .more-news-container.banner-left {
    grid-template-columns: 300px 1fr 1fr 1fr;
    grid-template-areas: "sidebar news1 news2 news3";
}

/* Banner Right Layout: News | News | News | Banner */
.more-news-widget .more-news-container.banner-right {
    grid-template-columns: 1fr 1fr 1fr 300px;
    grid-template-areas: "news1 news2 news3 sidebar";
}

/* Content Area - 3 Column Grid for News */
.more-news-widget .more-news-content {
    display: contents; /* This makes the grid items behave as direct children of the container */
}

.more-news-widget .more-news-grid {
    display: contents; /* This allows the news cards to be direct grid items */
}

/* Individual News Cards - Each takes one grid column */
.more-news-widget .news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.more-news-widget .news-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* News Image - Square Format */
.more-news-widget .news-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1; /* Perfect square */
    overflow: hidden;
    background: #f5f5f5;
}

.more-news-widget .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.more-news-widget .news-card:hover .news-image img {
    transform: scale(1.05);
}

/* Live Badge */
.more-news-widget .live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: white;
    font-size: 0.7em;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* News Info */
.more-news-widget .news-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* News Category */
.more-news-widget .news-category {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    color: #007cba;
    letter-spacing: 0.5px;
    margin: 0;
}

.more-news-widget .news-category.live-category {
    color: #ff0000;
}

/* News Title */
.more-news-widget .news-title {
    font-size: 0.95em;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    text-decoration: none;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
    flex: 1;
}

.more-news-widget .news-title:hover {
    color: #007cba;
}

/* Reading Time */
.more-news-widget .reading-time {
    font-size: 0.75em;
    color: #888;
    margin: 0;
    align-self: flex-start;
}

/* Sidebar Banner - Takes one column */
.more-news-widget .more-news-sidebar {
    grid-area: sidebar;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.more-news-widget .sidebar-banner {
    width: 100%;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.more-news-widget .sidebar-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.more-news-widget .sidebar-banner:hover img {
    transform: scale(1.02);
}

.more-news-widget .sidebar-banner a {
    display: block;
    width: 100%;
    height: 100%;
}

.more-news-widget .banner-code {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* No News Message */
.more-news-widget .no-news-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.more-news-widget .no-news-message p {
    margin: 0 0 0.5rem 0;
}

.more-news-widget .no-news-message small {
    color: #999;
}

/* Responsive Design */
@media (max-width: 1200px) {
    /* 3 Column Layout: Banner + 2 News columns */
    .more-news-widget .more-news-container.banner-left {
        grid-template-columns: 250px 1fr 1fr;
        grid-template-areas: 
            "sidebar news1 news2"
            "sidebar news3 news4";
    }
    
    .more-news-widget .more-news-container.banner-right {
        grid-template-columns: 1fr 1fr 250px;
        grid-template-areas: 
            "news1 news2 sidebar"
            "news3 news4 sidebar";
    }
}

@media (max-width: 1024px) {
    /* Stack Layout: News on top, Banner below */
    .more-news-widget .more-news-container.banner-left,
    .more-news-widget .more-news-container.banner-right {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "news1 news2"
            "news3 news4"
            "sidebar sidebar";
        gap: 20px;
    }
    
    .more-news-widget .more-news-sidebar {
        flex-direction: row;
        gap: 15px;
    }
    
    .more-news-widget .sidebar-banner {
        flex: 1;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    /* Single Column Layout */
    .more-news-widget .more-news-container.banner-left,
    .more-news-widget .more-news-container.banner-right {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "news1"
            "news2"
            "news3"
            "sidebar";
        gap: 15px;
    }
    
    .more-news-widget .more-news-sidebar {
        flex-direction: column;
        gap: 15px;
    }
    
    .more-news-widget .sidebar-banner {
        height: 200px !important;
    }
    
    .more-news-widget .news-info {
        padding: 12px;
    }
    
    .more-news-widget .news-title {
        font-size: 0.9em;
        -webkit-line-clamp: 2;
    }
    
    .more-news-widget .more-news-section-title {
        font-size: 1.2em;
        margin-bottom: 20px;
        padding-left: 12px;
    }
    
    .more-news-widget .more-news-section-title::before {
        width: 3px;
    }
}

@media (max-width: 480px) {
    .more-news-widget .news-info {
        padding: 10px;
        gap: 6px;
    }
    
    .more-news-widget .news-title {
        font-size: 0.85em;
    }
    
    .more-news-widget .news-category {
        font-size: 0.75em;
    }
    
    .more-news-widget .reading-time {
        font-size: 0.7em;
    }
    
    .more-news-widget .live-badge {
        font-size: 0.65em;
        padding: 3px 6px;
        top: 8px;
        left: 8px;
    }
    
    .more-news-widget .sidebar-banner {
        height: 150px !important;
    }
}

/* Force grid layout for news cards */
.more-news-widget .more-news-grid .news-card:nth-child(1) {
    grid-area: news1;
}

.more-news-widget .more-news-grid .news-card:nth-child(2) {
    grid-area: news2;
}

.more-news-widget .more-news-grid .news-card:nth-child(3) {
    grid-area: news3;
}

.more-news-widget .more-news-grid .news-card:nth-child(4) {
    grid-area: news4;
}

.more-news-widget .more-news-grid .news-card:nth-child(5) {
    grid-area: news5;
}

    .more-news-widget .more-news-grid .news-card:nth-child(6) {
    grid-area: news6;
}
/* ==========================================================================
   NEWSPAPER MORE NEWS WIDGET - 4 COLUMN LAYOUT (3 NEWS + 1 BANNER)
   ========================================================================== */

.more-news-widget {
    font-family: "Open Sans", sans-serif;
    width: 100%;
}

/* Section Title */
.more-news-widget .more-news-section-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.4em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
    position: relative;
    padding-left: 15px;
}

.more-news-widget .more-news-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #007cba;
}

/* Main Container - 4 Column Layout */
.more-news-widget .more-news-container {
    display: grid;
    gap: 20px;
    align-items: start;
    width: 100%;
}

/* Banner Left Layout: Banner | News | News | News */
.more-news-widget .more-news-container.banner-left.with-banner {
    grid-template-columns: 300px repeat(3, 1fr);
}

/* Banner Right Layout: News | News | News | Banner */
.more-news-widget .more-news-container.banner-right.with-banner {
    grid-template-columns: repeat(3, 1fr) 300px;
}

/* No Banner Layout: News | News | News */
.more-news-widget .more-news-container.no-banner {
    grid-template-columns: repeat(3, 1fr);
}

/* Individual News Cards */
.more-news-widget .news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.more-news-widget .news-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* News Image - Square Format */
.more-news-widget .news-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1; /* Perfect square */
    overflow: hidden;
    background: #f5f5f5;
}

.more-news-widget .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.more-news-widget .news-card:hover .news-image img {
    transform: scale(1.05);
}

/* Live Badge */
.more-news-widget .live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: white;
    font-size: 0.7em;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* News Info */
.more-news-widget .news-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* News Category */
.more-news-widget .news-category {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    color: #007cba;
    letter-spacing: 0.5px;
    margin: 0;
}

.more-news-widget .news-category.live-category {
    color: #ff0000;
}

/* News Title */
.more-news-widget .news-title {
    font-size: 0.95em;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    text-decoration: none;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
    flex: 1;
}

.more-news-widget .news-title:hover {
    color: #007cba;
}

/* Reading Time */
.more-news-widget .reading-time {
    font-size: 0.75em;
    color: #888;
    margin: 0;
    align-self: flex-start;
}

/* Sidebar Banner */
.more-news-widget .more-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.more-news-widget .sidebar-banner {
    width: 100%;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.more-news-widget .sidebar-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.more-news-widget .sidebar-banner:hover img {
    transform: scale(1.02);
}

.more-news-widget .sidebar-banner a {
    display: block;
    width: 100%;
    height: 100%;
}

.more-news-widget .banner-code {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* No News Message */
.more-news-widget .no-news-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.more-news-widget .no-news-message p {
    margin: 0 0 0.5rem 0;
}

.more-news-widget .no-news-message small {
    color: #999;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .more-news-widget .more-news-container.banner-left.with-banner,
    .more-news-widget .more-news-container.banner-right.with-banner {
        grid-template-columns: 250px repeat(2, 1fr);
    }
    
    .more-news-widget .more-news-container.no-banner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .more-news-widget .more-news-container.banner-left.with-banner,
    .more-news-widget .more-news-container.banner-right.with-banner,
    .more-news-widget .more-news-container.no-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .more-news-widget .more-news-sidebar {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 15px;
    }
    
    .more-news-widget .sidebar-banner {
        flex: 1;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .more-news-widget .more-news-container.banner-left.with-banner,
    .more-news-widget .more-news-container.banner-right.with-banner,
    .more-news-widget .more-news-container.no-banner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .more-news-widget .more-news-sidebar {
        flex-direction: column;
        gap: 15px;
    }
    
    .more-news-widget .sidebar-banner {
        height: 200px !important;
    }
    
    .more-news-widget .news-info {
        padding: 12px;
    }
    
    .more-news-widget .news-title {
        font-size: 0.9em;
        -webkit-line-clamp: 2;
    }
    
    .more-news-widget .more-news-section-title {
        font-size: 1.2em;
        margin-bottom: 20px;
        padding-left: 12px;
    }
    
    .more-news-widget .more-news-section-title::before {
        width: 3px;
    }
}

@media (max-width: 480px) {
    .more-news-widget .news-info {
        padding: 10px;
        gap: 6px;
    }
    
    .more-news-widget .news-title {
        font-size: 0.85em;
    }
    
    .more-news-widget .news-category {
        font-size: 0.75em;
    }
    
    .more-news-widget .reading-time {
        font-size: 0.7em;
    }
    
    .more-news-widget .live-badge {
        font-size: 0.65em;
        padding: 3px 6px;
        top: 8px;
        left: 8px;
    }
    
    .more-news-widget .sidebar-banner {
        height: 150px !important;
    }
}/*
 ==========================================================================
   NEWSPAPER MORE NEWS WIDGET - FIXED 4 COLUMN LAYOUT
   ========================================================================== */

.more-news-widget {
    font-family: "Open Sans", sans-serif;
    width: 100%;
}

/* Section Title */
.more-news-widget .more-news-section-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.4em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 25px 0;
    position: relative;
    padding-left: 15px;
}

.more-news-widget .more-news-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #007cba;
}

/* Main Container - 4 Column Layout */
.more-news-widget .more-news-container {
    display: grid;
    gap: 20px;
    align-items: start;
    width: 100%;
}

/* Banner Left Layout: Banner | News | News | News */
.more-news-widget .more-news-container.banner-left.with-banner {
    grid-template-columns: 300px 1fr 1fr 1fr;
}

/* Banner Right Layout: News | News | News | Banner */
.more-news-widget .more-news-container.banner-right.with-banner {
    grid-template-columns: 1fr 1fr 1fr 300px;
}

/* No Banner Layout: News | News | News */
.more-news-widget .more-news-container.no-banner {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Individual News Cards */
.more-news-widget .news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.more-news-widget .news-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* News Image - Square Format */
.more-news-widget .news-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1; /* Perfect square */
    overflow: hidden;
    background: #f5f5f5;
}

.more-news-widget .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.more-news-widget .news-card:hover .news-image img {
    transform: scale(1.05);
}

/* Live Badge */
.more-news-widget .live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff0000;
    color: white;
    font-size: 0.7em;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* News Info */
.more-news-widget .news-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* News Category */
.more-news-widget .news-category {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    color: #007cba;
    letter-spacing: 0.5px;
    margin: 0;
}

.more-news-widget .news-category.live-category {
    color: #ff0000;
}

/* News Title */
.more-news-widget .news-title {
    font-size: 0.95em;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    text-decoration: none;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
    flex: 1;
}

.more-news-widget .news-title:hover {
    color: #007cba;
}

/* Reading Time */
.more-news-widget .reading-time {
    font-size: 0.75em;
    color: #888;
    margin: 0;
    align-self: flex-start;
}

/* Sidebar Banner */
.more-news-widget .more-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.more-news-widget .sidebar-banner {
    width: 100%;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.more-news-widget .sidebar-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.more-news-widget .sidebar-banner:hover img {
    transform: scale(1.02);
}

.more-news-widget .sidebar-banner a {
    display: block;
    width: 100%;
    height: 100%;
}

.more-news-widget .banner-code {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* No News Message */
.more-news-widget .no-news-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.more-news-widget .no-news-message p {
    margin: 0 0 0.5rem 0;
}

.more-news-widget .no-news-message small {
    color: #999;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .more-news-widget .more-news-container.banner-left.with-banner {
        grid-template-columns: 250px 1fr 1fr;
    }
    
    .more-news-widget .more-news-container.banner-right.with-banner {
        grid-template-columns: 1fr 1fr 250px;
    }
    
    .more-news-widget .more-news-container.no-banner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .more-news-widget .more-news-container.banner-left.with-banner,
    .more-news-widget .more-news-container.banner-right.with-banner,
    .more-news-widget .more-news-container.no-banner {
        grid-template-columns: 1fr 1fr;
    }
    
    .more-news-widget .more-news-sidebar {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 15px;
    }
    
    .more-news-widget .sidebar-banner {
        flex: 1;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .more-news-widget .more-news-container.banner-left.with-banner,
    .more-news-widget .more-news-container.banner-right.with-banner,
    .more-news-widget .more-news-container.no-banner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .more-news-widget .more-news-sidebar {
        flex-direction: column;
        gap: 15px;
    }
    
    .more-news-widget .sidebar-banner {
        height: 200px !important;
    }
    
    .more-news-widget .news-info {
        padding: 12px;
    }
    
    .more-news-widget .news-title {
        font-size: 0.9em;
        -webkit-line-clamp: 2;
    }
    
    .more-news-widget .more-news-section-title {
        font-size: 1.2em;
        margin-bottom: 20px;
        padding-left: 12px;
    }
    
    .more-news-widget .more-news-section-title::before {
        width: 3px;
    }
}

@media (max-width: 480px) {
    .more-news-widget .news-info {
        padding: 10px;
        gap: 6px;
    }
    
    .more-news-widget .news-title {
        font-size: 0.85em;
    }
    
    .more-news-widget .news-category {
        font-size: 0.75em;
    }
    
    .more-news-widget .reading-time {
        font-size: 0.7em;
    }
    
    .more-news-widget .live-badge {
        font-size: 0.65em;
        padding: 3px 6px;
        top: 8px;
        left: 8px;
    }
    
    .more-news-widget .sidebar-banner {
        height: 150px !important;
    }
}
/* ======
====================================================================
   NEWSPAPER VIDEOS WIDGET
   ========================================================================== */

.videos-widget {
    font-family: "Open Sans", sans-serif;
    padding: 20px 0;
}

/* Section Title */
.videos-widget .videos-section-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.25em;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    border-bottom: 3px solid #bbb;
    padding-bottom: 8px;
    text-align: left;
}

/* Videos Grid */
.videos-widget .videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Video Cards */
.videos-widget .video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.videos-widget .video-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

/* Video Thumbnail */
.videos-widget .video-thumbnail {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    cursor: pointer;
}

.videos-widget .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.videos-widget .video-thumbnail:hover img {
    transform: scale(1.05);
}

/* Play Button */
.videos-widget .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.videos-widget .video-thumbnail:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.videos-widget .play-button svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Video Info */
.videos-widget .video-info {
    padding: 16px;
}

/* Video Category */
.videos-widget .video-category {
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: #e53935;
}

/* Video Title */
.videos-widget .video-title {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.videos-widget .video-title-link {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.videos-widget .video-title-link:hover {
    color: #1536b7;
    text-decoration: none;
}

/* Video Date */
.videos-widget .video-date {
    font-size: 0.85em;
    color: #666;
    font-weight: normal;
}

/* View All Button */
.videos-widget .view-all-button-container {
    text-align: center;
    margin-top: 20px;
}

.videos-widget .view-all-videos-btn {
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.videos-widget .view-all-videos-btn:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* No Videos Message */
.videos-widget .no-videos-message {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #666;
}

.videos-widget .no-videos-message p {
    margin: 0 0 0.5rem 0;
}

.videos-widget .no-videos-message ul {
    margin: 10px 0;
    padding-left: 20px;
}

.videos-widget .no-videos-message small {
    color: #999;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.video-modal iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .videos-widget .videos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .videos-widget .video-thumbnail {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .videos-widget .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .videos-widget .video-thumbnail {
        height: 120px;
    }
    
    .videos-widget .video-info {
        padding: 12px;
    }
    
    .videos-widget .video-title {
        font-size: 1em;
    }
    
    .videos-widget .videos-section-title {
        font-size: 1.1em;
        margin-bottom: 16px;
    }
    
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .videos-widget .videos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .videos-widget .video-thumbnail {
        height: 180px;
    }
    
    .videos-widget .video-info {
        padding: 10px;
    }
    
    .videos-widget .video-title {
        font-size: 0.95em;
    }
    
    .videos-widget .videos-section-title {
        font-size: 1em;
        margin-bottom: 14px;
    }
    
    .video-modal iframe {
        height: 250px;
    }
    
    .video-modal-close {
        top: -35px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}/* You
Tube Modal Styles */
.youtube-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.youtube-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.youtube-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s ease;
}

.youtube-modal-overlay.active .youtube-modal-content {
    transform: scale(1) translateY(0);
}

.youtube-modal-content iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.youtube-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.youtube-modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

body.youtube-modal-open {
    overflow: hidden;
}

/* Responsive YouTube Modal */
@media (max-width: 768px) {
    .youtube-modal-content {
        width: 95%;
    }
    
    .youtube-modal-content iframe {
        height: 300px;
    }
    
    .youtube-modal-close {
        top: -35px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .youtube-modal-content iframe {
        height: 250px;
    }
}/* Mo
bile Menu Body Lock */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mobile Header Improvements */
.newspaper-header .mobile-header-container {
    position: relative;
    z-index: 1000;
}

/* Mobile Navigation Enhancements */
.newspaper-header .mobile-nav-menu {
    border-left: 3px solid #c41e3a;
}

.newspaper-header .mobile-nav-item:last-child {
    border-bottom: none;
}

.newspaper-header .mobile-nav-link {
    position: relative;
}

.newspaper-header .mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #c41e3a;
    transition: width 0.3s ease;
}

.newspaper-header .mobile-nav-link:hover::before {
    width: 4px;
}

/* Mobile Breaking News Improvements */
.newspaper-header .mobile-breaking-news {
    position: relative;
    z-index: 999;
}

.newspaper-header .mobile-breaking-container {
    position: relative;
    overflow: hidden;
}

.newspaper-header .mobile-breaking-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(to left, #c41e3a, transparent);
    pointer-events: none;
}

/* Smooth transitions for mobile elements */
.newspaper-header .mobile-menu-toggle span,
.newspaper-header .mobile-nav-overlay,
.newspaper-header .mobile-nav-menu,
.newspaper-header .mobile-nav-link {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.newspaper-header .mobile-menu-toggle:focus,
.newspaper-header .mobile-nav-close:focus,
.newspaper-header .mobile-nav-link:focus {
    outline: 2px solid #c41e3a;
    outline-offset: 2px;
}

/* Loading state for mobile menu */
.newspaper-header .mobile-nav-menu.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Mobile landscape adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .newspaper-header .mobile-nav-menu {
        width: 250px;
        right: -250px;
    }
    
    .newspaper-header .mobile-breaking-text {
        font-size: 0.8rem;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .newspaper-header .mobile-title {
        font-size: 0.9rem;
    }
    
    .newspaper-header .mobile-breaking-label {
        font-size: 0.6rem;
        padding: 0.15rem 0.3rem;
    }
    
    .newspaper-header .mobile-breaking-text {
        font-size: 0.75rem;
    }
}/*
 Force mobile menu visibility when active */
@media (max-width: 768px) {
    .newspaper-header .mobile-nav-menu.active {
        display: block !important;
        right: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .newspaper-header .mobile-nav-overlay.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Debug styles - remove after testing */
.newspaper-header .mobile-nav-menu {
    border: 2px solid red !important; /* Temporary debug border */
}

.newspaper-header .mobile-nav-overlay {
    border: 2px solid blue !important; /* Temporary debug border */
}/* TEM
PORARY DEBUG STYLES - REMOVE AFTER TESTING */
.mobile-nav-menu {
    border: 5px solid red !important;
    background: rgba(255,0,0,0.3) !important;
}

.mobile-nav-overlay {
    border: 5px solid blue !important;
    background: rgba(0,0,255,0.5) !important;
}

.mobile-nav-menu.active {
    right: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.mobile-nav-overlay.active {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Force show mobile elements on small screens */
@media (max-width: 768px) {
    .mobile-nav-menu,
    .mobile-nav-overlay {
        display: block !important;
    }
}/*
 SIMPLE MOBILE MENU - WORKING VERSION */
.mobile-nav-menu.show {
    right: 0 !important;
    transform: translateX(0) !important;
}

.mobile-nav-overlay.show {
    opacity: 1 !important;
    visibility: visible !important;
}

body.menu-open {
    overflow: hidden !important;
}

/* SUPER VISIBLE DEBUG STYLES */
.mobile-nav-menu {
    background: #ff0000 !important; /* Bright red */
    color: #ffffff !important;
    border: 10px solid #00ff00 !important; /* Thick green border */
    z-index: 99999 !important;
}

.mobile-nav-overlay {
    background: rgba(0,0,255,0.9) !important; /* Strong blue */
    z-index: 99998 !important;
}

.mobile-menu-toggle {
    background: transparent !important; /* Transparent background */
    border: none !important; /* No border */
    padding: 8px !important;
}/* F
INAL FIX - FORCE MOBILE MENU TO WORK */
.mobile-nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 80% !important;
    max-width: 300px !important;
    height: 100vh !important;
    background: #ff0000 !important;
    color: #ffffff !important;
    border-left: 10px solid #00ff00 !important;
    z-index: 99999 !important;
    transition: right 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow-y: auto !important;
}

.mobile-nav-menu.show {
    right: 0 !important;
}

.mobile-nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(0,0,255,0.8) !important;
    z-index: 99998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

.mobile-nav-overlay.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-toggle {
    background: transparent !important;
    border: none !important;
    z-index: 100000 !important;
    position: relative !important;
    padding: 8px !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
}

.mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.1) !important;
}

.mobile-menu-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #ffffff !important;
    margin: 5px 0 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

/* Menu content styles */
.mobile-nav-header {
    padding: 20px !important;
    background: #000000 !important;
    color: #ffffff !important;
    border-bottom: 2px solid #00ff00 !important;
}

.mobile-nav-list {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.mobile-nav-item {
    border-bottom: 1px solid #ffffff !important;
}

.mobile-nav-link {
    display: block !important;
    padding: 20px !important;
    color: #ffffff !important;
    background: transparent !important;
    text-decoration: none !important;
    font-size: 18px !important;
    font-weight: bold !important;
    border: none !important;
}

.mobile-nav-link:hover {
    background: #000000 !important;
    color: #00ff00 !important;
}

.mobile-nav-close {
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #00ff00 !important;
    padding: 10px !important;
    font-size: 20px !important;
}/* FORCED M
OBILE MENU - GUARANTEED TO WORK */
#forced-mobile-menu.show {
    right: 0 !important;
}

#forced-mobile-overlay.show {
    opacity: 1 !important;
    visibility: visible !important;
}

body.menu-open {
    overflow: hidden !important;
}

/* Ensure forced menu is always on top */
#forced-mobile-menu {
    z-index: 999999 !important;
}

#forced-mobile-overlay {
    z-index: 999998 !important;
}/* TRANSF
ORM-BASED MOBILE MENU */
#forced-mobile-menu.show {
    transform: translateX(0) !important;
}

#forced-mobile-menu {
    transform: translateX(100%) !important;
}

/* Make menu super visible when active */
#forced-mobile-menu.show {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

    #forced-mobile-overlay.show {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}
/* FORCE MENU TO BE VISIBLE ON ALL SCREEN SIZES */
@media (max-width: 768px) {
    #forced-mobile-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 350px !important;
        height: 70vh !important;
        background: #ff0000 !important;
        z-index: 999999 !important;
        border: 8px solid #00ff00 !important;
        border-radius: 15px !important;
    }
    
    #forced-mobile-menu.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #forced-mobile-overlay {
        display: block !important;
        visibility: visible !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0,0,255,0.8) !important;
        z-index: 999998 !important;
    }
    
    #forced-mobile-overlay.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* FORCE MENU CONTENT TO BE VISIBLE ON MOBILE */
@media (max-width: 768px) {
    #forced-mobile-menu ul {
        background: #ff0000 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #forced-mobile-menu li {
        border-bottom: 2px solid #ffffff !important;
        background: #ff0000 !important;
    }
    
    #forced-mobile-menu a {
        display: block !important;
        padding: 15px !important;
        color: #ffffff !important;
        font-size: 16px !important;
        font-weight: bold !important;
        text-decoration: none !important;
        background: #ff0000 !important;
    }
    
    #close-forced-menu {
        background: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #00ff00 !important;
        padding: 8px 12px !important;
        font-size: 18px !important;
        cursor: pointer !important;
    }
}/* C
ORRECT MOBILE MENU BEHAVIOR */
/* MENU HIDDEN BY DEFAULT */
#forced-mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

#forced-mobile-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ONLY SHOW MENU WHEN ACTIVE AND ON MOBILE */
@media (max-width: 768px) {
    #forced-mobile-menu.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 350px !important;
        height: 70vh !important;
        background: #ff0000 !important;
        z-index: 999999 !important;
        border: 8px solid #00ff00 !important;
        border-radius: 15px !important;
    }
    
    #forced-mobile-overlay.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0,0,255,0.8) !important;
        z-index: 999998 !important;
    }
}

/* HIDE MENU ON DESKTOP ALWAYS */
@media (min-width: 769px) {
    #forced-mobile-menu,
    #forced-mobile-overlay,
    #forced-mobile-menu.show,
    #forced-mobile-overlay.show {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}
/* FINAL HAMBURGER BUTTON FIX - HIGHEST SPECIFICITY */
.newspaper-header .mobile-header-container .mobile-menu-toggle {
    background: transparent !important;
    border: none !important;
    padding: 8px !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
    color: white !important;
}

.newspaper-header .mobile-header-container .mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.1) !important;
}

.newspaper-header .mobile-header-container .mobile-menu-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #ffffff !important;
    margin: 5px 0 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

.newspaper-header .mobile-header-container .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
}

.newspaper-header .mobile-header-container .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}

.newspaper-header .mobile-header-container .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px) !important;
}
/* COMPACT HEADER LAYOUT - positions date (left) and weather (right) inside Masthead around the logo */
.newspaper-header-compact .masthead-compact {
    padding: 0.5rem 0;
}
.newspaper-header-compact .masthead-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* left | center (logo/title) | right */
    align-items: center; /* vertical centering */
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.newspaper-header-compact .masthead-side {
    font-size: 0.95rem;
    line-height: 1.2;
}
.newspaper-header-compact .masthead-left {
    justify-self: start;
    text-align: left;
}
.newspaper-header-compact .masthead-right {
    justify-self: end;
    text-align: right;
}
.newspaper-header-compact .masthead-center {
    text-align: center;
}
.newspaper-header-compact .masthead-center img {
    display: inline-block;
    vertical-align: middle;
}
/* Keep weather icon spacing */
.newspaper-header-compact .header-weather .weather-icon {
    margin-left: 0.5rem;
}
/* Ensure color/typo from controls still look good in this layout */
.newspaper-header-compact .header-date,
.newspaper-header-compact .header-weather {
    white-space: nowrap;
}
/* Optional: shrink side text slightly on narrower desktops to avoid collisions */
@media (max-width: 1024px) {
    .newspaper-header-compact .masthead-side {
        font-size: 0.9rem;
    }
}
/* Mobile keeps existing mobile header (masthead hidden by base styles), so no extra rules needed */
/* Fix: ensure stylesheet closes all open blocks */
}
}