/* News List Styles */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
    gap: 30px;
    margin-bottom: 20px;
    justify-content: start;
}

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

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 88, 56, 0.15);
}

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

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

.news-item a:has(.news-image) {
    overflow: hidden;
    display: block;
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-content h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
    font-family: 'Montserrat', sans-serif;
    color: #005838;
}

.news-content h2 a {
    color: #005838;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h2 a:hover {
    color: #f59303;
}

.news-date {
    font-size: 14px;
    color: #818281;
    margin-bottom: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.news-date:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23818281' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.news-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #4e4e4d;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 1199px) {
    .news-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
        gap: 25px;
    }

    .news-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .news-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-image {
        height: 200px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h2 {
        font-size: 18px;
    }

    .news-excerpt {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 18px;
    }

    .news-content h2 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .news-date {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .news-excerpt {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .news-content .btn {
        width: 100%;
    }
}

