.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(25px, 4vw, 35px);
}

.news-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e74c3c 0%, #357abd 100%);
}

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

.news-content {
    padding: clamp(20px, 3vw, 25px);
}

.news-date {
    font-size: clamp(12px, 1.5vw, 14px);
    color: #e74c3c;
    display: block;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: clamp(18px, 3vw, 22px);
    color: #1a1a1a;
    margin-bottom: 12px;
}

.news-card p {
    font-size: clamp(14px, 1.8vw, 15px);
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 1.8vw, 15px);
}

.read-more:hover {
    color: #357abd;
}
