.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.news-item {
    border-radius: 12px;
    width: 100%;
    position: relative;
    margin-right: 12px;
    height: 320px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item > img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    object-fit: cover;
    border-radius: inherit;
}
.news-item_text {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 12px;
    margin: 12px;
}

.news-item_text > h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.news_list-item_text-footer {
    align-items: center;
    gap: 4px;
    justify-content: start;
}

.news-item_tags {
    margin: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.news-item_tags > span, .mob-other_news-tags_item {
    background-color: rgba(94, 1, 212, 0.28);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 1000px;
}

.mob-other_news-tags_item {
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
}

.news-item_img > img {
    border-radius: 12px;
}

@media screen and (max-width: 1100px) {
    .slide-mob .mob-news-link {
        display: flex;
        align-items: start;
        justify-content: space-between;
        flex-direction: column;
        position: relative;
        border-radius: 12px;
        width: 100%;
    }

    .mob-news-link > div {
        padding: 12px 16px;
    }

    .mob-news-link > div:last-child {
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        padding: 12px;
        margin: 170px 16px 12px 16px;
        width: 83%;
    }

    .mob-news-link > div:last-child > .post-title {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .mob-news-link > div:last-child > .blog-footer {
        justify-content: start;
    }

    .mob-news-link > img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        position: absolute;
        z-index: -1;

        filter: brightness(0.5)
    }

    .slide-mob .mob-news-link::after {
        content: '';
    }

    .slide-mob.slide-mob_top-blog {
        padding: 0;
        margin-bottom: 0;
    }

    .mob_blog-content {
        margin-top: 32px;
        display: flex;
        gap: 32px;
        flex-direction: column;
    }

    .mob-other_news-tags {
        margin-top: 32px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
}