.newsSection {
    min-height: 100vh;
    background-color: #D0EDFB;
}

.two-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.three-line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card{
    cursor: pointer;
}

.news-card img {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.news-card:hover img {
    transform: scale(1.02);
}

.news-card:hover div {
    transform: translateY(-5px);
    transition: 0.4s ease;
}

.news-card-big:hover img {
    transform: none !important;
}

.news-card-big:hover div {
    transform: none !important;
    transition: none !important;
}