.news-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
}

.news-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.news-section {
    padding: 5rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.news-excerpt {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #10b981;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .news-header h1 {
        font-size: 2.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

