.news-card2 {
    display: flex;
    gap: 15px;
}

.news-card2__img {
    width: 160px;
    height: 156px;
    flex-shrink: 0;
    line-height: 0;
    overflow: hidden;
}

.news-card2__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card2__content {
    flex: 1;
}

.news-card2__title {
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 15px;
}

.news-card2__title a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
}

.news-card2__title a:hover {
    color: var(--color-orange);
}

.news-card2__desc {
    font-size: 15px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card2__desc ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.news-card2__desc ul li {
    margin-bottom: 3px;
    list-style: disc;
}