.news-col {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.news-col.show {
    opacity: 1;
    transform: translateY(0);
}

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.news-card {
    background: #252f45e6;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: all .3s ease;
    height: 100%;
    cursor: pointer;
    border: 1px solid hsla(0, 0%, 100%, 0.12);
    backdrop-filter: blur(13.59px);
}

.news-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.news-card:hover .news-image {
    transform: scale(1.08);
}

.news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #fff;
}

.news-text {
    color: #b3b2b2;
    font-size: 14px;
    line-height: 1.7;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 72px;
}