.news-section {
    padding: 4rem 2rem;
    text-align: center;
}

.news-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.news-section h2::after {
    content: none;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.news-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: fill;
    background-color: #f5f5f5;
}

.news-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: #333;
}

.news-card p {
    padding: 0 1rem 1rem;
    color: #666;
} 