.news-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.news-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.news-items {
    display: flex;
    flex-wrap: wrap;
}

.news-item {
    height: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.news-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    padding: 10px 15px 0;
    font-size: 14px;
    color: #888;
}

.news-title {
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.news-description {
    padding: 0 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.news-more-btn {
    display: inline-block;
    margin: 15px;
    padding: 8px 20px;
    background-color: #FFD101;
    color: #333;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.news-more-btn:hover {
    background-color: #f0c400;
    color: #333;
}

@media (max-width: 992px) {
    .news-section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .news-section-title {
        font-size: 26px;
    }
    
    .news-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .news-section-title {
        font-size: 24px;
    }
}
