.news-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.news-section .section-header {
    margin-bottom: 2rem;
}

.news-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    background: var(--white);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.news-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.news-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(40, 167, 69, 0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 1;
}

.news-content {
    padding: 1rem;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #333;
    line-height: 1.4;
    max-height: 2.8em;
    overflow: hidden;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-footer {
    padding: 1rem;
    border-top: 1px solid #eee;
    text-align: left;
    background: #fff;
}

.btn-read-more {
    display: inline-block;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 12px;
    border-radius: 4px;
}

.btn-read-more:hover {
    background: #1e7e34;
    color: #fff;
}

@media (max-width: 768px) {
    .news-section {
        padding: 2rem 0;
    }

    .news-image-container {
        height: 200px;
    }

    .news-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .news-section {
        padding: 1.5rem 0;
    }

    .news-image-container {
        height: 150px;
    }

    .news-content h3 {
        font-size: 1rem;
    }

    .news-content p {
        font-size: 0.9rem;
    }
}