.blog-layout {
    padding: 20px 0;
}

.blog-layout h1 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #464646;
}

.news-page__categories {
    margin: 30px 0;
}

.news-page__categories__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.news-page__categories__list__item {
    width: 100%;
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
}

.news-page__categories__list__item:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, .5);
}

.news-page__categories__list__item > span {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    z-index: 1;
}

.news-page__articles__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.news-page__articles__list__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-page__articles__list__item img {
    max-width: 100%;
}

.news-page__articles__list__item__news-title {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #464646;
    text-transform: uppercase;
}


.news-page__articles__list__item__news-description {
    color: #464646;
    font-size: 13px;
}

.news-page__articles__list__item:hover .news-page__articles__list__item__news-title {
    color: #d71637;
}

@media(max-width: 991.5px) {
    .news-page__articles__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media(max-width: 767.5px) {
    .news-page__articles__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .news-page__categories__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media(max-width: 575.5px) {
    .news-page__articles__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-page__articles__list__item {
        padding-bottom: 15px;
        border-bottom: 1px solid #ebebeb;
    }

    .news-page__categories__list {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}