.newsblog-category {
    background: #f1f1f1;
}
.blog-page__title {
    margin-bottom: 25px;
    color: #464646;
    text-transform: uppercase;
}
.blog {
    padding-bottom: 200px;
    overflow: hidden;
}
.blog__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -14px;
    position: relative;
}

.blog-item {
    display: block;
    width: 372px;
    margin: 1px;
    background: transparent;
    text-decoration: none;
    transition: all .2s linear;
    padding: 0 10px 10px;
}
.blog-item .blog-item-back{
    background: #fff;
    height: 100%;
}
.blog-item:hover {
    transform: translateY(-5px);
}
.blog-item__img {
    width: 100%;
    height: 250px;
}
.blog-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-item__text {
    padding: 25px 22px 37px;
    display: flex;
    flex-direction: column;
}
.blog-item__title {
    color: #464646;
    margin-bottom: 7px;
}
.blog-item__date {
    color: #BCBCBC;
    position: relative;
    margin-bottom: 53px;
}
.blog-item__date:after {
    content: '';
    position: absolute;
    width: 47px;
    height: 4px;
    background: #464646;
    bottom: -27px;
    left: 0;
}
.blog-item__desc {
    color: #8D8D8D;
    height: 97px;
    overflow: hidden;
    letter-spacing: .02em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


@media (max-width:1024px) {
    .blog__inner {
        justify-content: center;
    }
    .blog__inner:before {
        content: none;
    }
    .blog__inner:after {
        content: none;
    }
    .blog {
        padding-bottom: 100px;
    }
}
@media (max-width: 768px) {
    .blog-item {
        margin-bottom: 15px;
    }
    .blog-item__img {
        height: 234px;
    }
}
@media (max-width: 560px) {
    .blog-page__title-title {
        font-size: 48px;
        line-height: 65px;
    }
    .blog-page__title {
        margin-bottom: 20px;
    }
}