.news {
    margin-bottom: 40px;
}

.news__list {
    margin-left: -18px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.news__title {
    font-size: 25px;
    color: #101010;
    font-weight: 600;
    margin-bottom: 20px;
}

.news__item {
    padding-left: 18px;
    margin-bottom: 18px;
    width: 100%;
    flex: none;
}

@media (min-width: 801px) {
    .news__item {
        width: 50%;
    }
}

@media (min-width: 1281px) {
    .news__item {
        width: 33.333333%;
    }
}

.news__item-inner {
    border-radius: 10px;
    background-color: #fff;
}

.news__item-img {
    max-width: 100%;
    border-radius: 5px;
    width: 100%;
}

.news__item-img-link {
    display: block;
}

.news__item-img-box {
    margin-bottom: 10px;
}

.news__item-title {
    font-size: 17px;
    color: #101010;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.news__item-title-box {
    margin-bottom: 10px;
}

.news__item-date {
    font-size: 13px;
    color: #b0afaf;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news__item-desc {
    font-size: 15px;
    color: #2c2c2c;
    line-height: 1.667;
}

.tags {
    margin-bottom: 100px;
}

.tags__list {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 16px;
    margin-left: -8px;
}

.tags__item {
    padding-left: 8px;
    margin-bottom: 8px;
}

.tags__item-text {
    font-size: 11px;
    line-height: 16px;
    background: rgba(115, 111, 78, 0.15);
    border: 1px solid rgba(115, 111, 78, 0.15);
    box-sizing: border-box;
    border-radius: 40px;
    padding: 4px 16px;
    color: #fff;
}