.newslist-set {
    flex-wrap: wrap;
    margin-left: -2vw;
}

.nws-item {
    width: 33.3%;
    box-sizing: border-box;
    padding-left: 2vw;
    margin-bottom: 2vw;
}

.nws-item-inner {
    height: 100%;
    overflow: hidden;
    background: var(--grey-dark);
}

.nws-item a {
    transition: color .3s ease;
}

.newslist-set {
    margin-top: 40px;
}

.nws-image {
    position: relative;
    overflow: hidden;
    height: 0;
    width: 100%;
    padding-bottom: 50%;
    margin: 0;
}

.nws-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nws-title {
    box-sizing: border-box;
    overflow: hidden;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 20px 10px;
}

.nws-desc {
    box-sizing: border-box;
    font-size: 12px;
    margin: 10px 20px;
    height: 65px;
    overflow: hidden;
    position: relative;
}

.nws-tags {
    padding: 0 20px 20px;
}

.nws-tags a {
    color: var(--red-color);
    font-size: 10px;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 10px;
}

@media screen and (max-width: 760px) {
    .nws-item {
        width: 50%;
    }
}

@media screen and (max-width: 560px) {
    .newslist-set {
        margin-left: 0;
    }
    .nws-item {
        width: 100%;
        padding-left: 0;
        margin-bottom: 25px;
    }
}