.news-section {
    text-align: center;
    padding: 50px 20px;
    background-color: white;
    margin: 30px auto;
    max-width: 1200px;
}

.news-section h2 {
    font-size: 28px;
    color: #1b1b1b;
    margin-bottom: 20px;
}

/* Featured News */
.featured-news {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.featured-news img {
    width: 50%;
    height: auto;
}

.featured-content {
    padding: 20px;
    text-align: left;
}

.featured-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.featured-content p {
    font-size: 16px;
    color: #666;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: rgb(69, 99, 231);
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    color: rgb(43, 77, 230);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.news-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 15px;
    text-align: left;
}

.news-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.news-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}