.news-card {
    border: 1px solid #eee;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-height: 445px;
}

.news-card.popup-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.29);
}

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

.news-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0 5px;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left !important;
}

.news-snippet {
    flex-grow: 1;
    font-size: 14px !important;
    color: #555 !important;
    margin-bottom: 10px;
    overflow: hidden;
    text-align: left !important;
    line-height: inherit;
}

.news-snippet p {
    font-size: 14px !important;
    color: #555 !important;
    text-align: left !important;
    line-height: inherit;
}

.news-snippet img {
    object-fit: fill;
    width: 100% !important;
    height: auto;
}

.text-minimal {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-link,.news-link:hover {
    font-size: 13px;
    color: #009b43;
    cursor: pointer;
}