 body { background-color: #ffffff; }
    .news-wrapper { margin-top: 120px; margin-bottom: 100px; }

    /* Featured News */
    .featured-news-card {
        position: relative;
        border-radius: 35px;
        overflow: hidden;
        height: 500px;
        margin-bottom: 50px;
        cursor: pointer;
    }
    .featured-news-img {
        width: 100%; height: 100%; object-fit: cover;
        transition: 0.5s;
    }
    .featured-news-card:hover .featured-news-img { transform: scale(1.05); }
    
    .featured-news-overlay {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        padding: 60px 40px 40px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        color: white;
    }

    /* News Grid */
    .news-card {
        border: none;
        background: transparent;
        transition: 0.3s;
        margin-bottom: 30px;
    }
    .news-img-wrapper {
        border-radius: 25px;
        overflow: hidden;
        height: 220px;
        margin-bottom: 20px;
    }
    .news-img { width: 100%; height: 100%; object-fit: cover; }
    
    .news-card:hover .news-title { color: #4361ee; }
    .news-title {
        font-weight: 800;
        font-size: 1.15rem;
        line-height: 1.5;
        color: #1e293b;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Sidebar & Category */
    .category-pill {
        display: inline-block;
        padding: 6px 15px;
        border-radius: 50px;
        background: #f1f5f9;
        color: #64748b;
        font-size: 0.75rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
    }
