/* News Section */
.news-section {
    padding: 80px 20px;
    background: #f4f7f6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-info {
    padding: 20px;
}

.news-title {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.news-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.news-more {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}
