    .news-slider-v4 {
        --primary-color: #2563eb;
        --text-dark: #1e293b;
        --text-light: #64748b;
        --white: #ffffff;
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
        --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
        
        width: 100%;
        max-width: 100%;
        margin: 1rem auto;
        font-family: -apple-system, BlinkMacSystemFont, sans-serif;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .slider-main {
        width: 100%;
        height: 60vh;
        min-height: 300px;
        max-height: 400px;
        position: relative;
    }
    
    .swiper-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .slide-image-container {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(10%) contrast(105%);
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    }
    
    .glass-container {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        z-index: 2;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        height: auto;
        max-height: 50%;
    }

    .slide-content {
        color: var(--white);
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .slide-excerpt {
        overflow-y: auto;
        max-height: 3.6em;
        margin-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .slide-excerpt::-webkit-scrollbar {
        display: none;
    }

    /* Adjustments for larger screens */
    @media (min-width: 640px) {
        .glass-container {
            max-height: 40%;
            padding: 1.25rem;
        }
        
        .slide-excerpt {
            max-height: 4.8em;
        }
    }

    @media (min-width: 1024px) {
        .news-slider-v4 {
            flex-direction: row;
            height: 500px;
            max-width: 100%;
            gap: 1.5rem;
            padding: 0 1.5rem;
            box-sizing: border-box;
        }
        
        .slider-main {
            width: 70%;
            height: 100%;
            max-height: none;
            min-height: auto;
        }
        
        .news-sidebar {
            width: 30%;
            height: 100%;
            display: flex !important; /* Force display */
            flex-direction: column;
            overflow-x: hidden;
            overflow-y: auto;
            padding: 0;
            gap: 1rem;
        }
        
        .glass-container {
            max-height: 35%;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }
        
        .slide-excerpt {
            max-height: none;
            overflow-y: visible;
        }
        
        .news-card {
            min-width: auto;
            height: 120px;
            padding: 0;
            background: transparent;
            box-shadow: none;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            display: flex;
            gap: 1rem;
            transition: transform 0.2s ease;
            cursor: pointer;
        }
        
        .news-card:hover {
            transform: translateX(5px);
        }
        
        .news-card.active-card {
            background: rgba(37, 99, 235, 0.1);
            border-left: 3px solid var(--primary-color);
        }
        
        .card-image {
            width: 120px;
            min-width: 120px;
            height: 100%;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .news-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .slide-title {
            font-size: 1.5rem;
        }
        
        .slide-excerpt {
            font-size: 0.9rem;
            -webkit-line-clamp: 4;
        }
    }
    
    @media (min-width: 1280px) {
        .news-slider-v4 {
            padding: 0 2.5rem;
        }
    }
    
    @media (min-width: 1536px) {
        .news-slider-v4 {
            padding: 0 5rem;
        }
    }
    
    .slide-content {
        color: var(--white);
    }
    
    .slide-meta {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        flex-wrap: wrap;
    }
    
    .badge {
        background: var(--primary-color);
        color: var(--white);
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        font-weight: 600;
        border-radius: 3px;
    }
    
    .slide-date {
        color: rgba(255,255,255,0.85);
        font-size: 0.8rem;
    }
    
    .slide-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
        line-height: 1.3;
    }
    
    .slide-title a {
        color: var(--white);
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
    .slide-title a:hover {
        color: rgba(255,255,255,0.9);
    }
    
    .slide-excerpt {
        margin-bottom: 1rem;
        color: rgba(255,255,255,0.9);
        font-size: 0.85rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .read-more {
        display: inline-block;
        color: var(--white);
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 3px;
        transition: all 0.2s ease;
        align-self: flex-start;
    }
    
    .read-more:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-1px);
    }
    
    .swiper-pagination {
        bottom: 10px !important;
    }
    
    .swiper-pagination-bullet {
        background: rgba(255,255,255,0.5);
        width: 6px;
        height: 6px;
    }
    
    .swiper-pagination-bullet-active {
        background: var(--white);
        width: 20px;
    }
    
    .news-sidebar {
        display: none;
    }
    
    /* Horizontal scroll cards for tablets */
    @media (min-width: 640px) and (max-width: 1023px) {
        .news-sidebar {
            display: flex;
            width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 0.5rem 0;
            gap: 0.75rem;
            scroll-snap-type: x mandatory;
        }
        
        .news-card {
            min-width: 280px;
            scroll-snap-align: start;
            display: flex;
            gap: 0.75rem;
            padding: 0.75rem;
            background: var(--white);
            border-radius: 5px;
            box-shadow: var(--shadow-sm);
            cursor: pointer;
        }
        
        .news-card.active-card {
            border: 2px solid var(--primary-color);
        }
        
        .card-image {
            width: 100px;
            min-width: 100px;
            height: 80px;
            border-radius: 3px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-date {
            color: var(--text-light);
            font-size: 0.7rem;
            margin-bottom: 0.25rem;
        }
        
        .card-content h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0 0 0.25rem;
            line-height: 1.3;
        }
        
        .card-content h4 a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .card-content h4 a:hover {
            color: var(--primary-color);
        }
    }
