@media screen and (max-width: 1024px) {
    .blog_block {
        margin-top: 18px;
    }

    .blog_block>.title {
        font-size: 32px;
    }

    .blog_block .list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        margin-top: 36px;
    }

    .blog_block .list .item {
        display: flex;
        flex-direction: column;
        border-radius: 10px;
    }

    .blog_block .list .item .info {
        background: #fff;
        border-radius: 10px;
        margin-top: -10px;
        padding: 20px;
        gap: 8px;
    }

    .blog_block .list .item .info .title {
        font-size: 19px;
        line-height: 24px;
    }

    .blog_block .list .item .preview {
        height: 255px;
    }
}

@media screen and (max-width: 768px) {
    .blog_block>.title {
        font-size: 24px;
    }

    .blog_block .list .item .info .title {
        font-size: 16px;
        line-height: 19px;
    }

    .blog_block .list .item .info .date {
        font-size: 10px;
    }

    .blog_block .list .item .preview {
        height: 200px;
    }
    .blog_block .list
    {
        margin-top: 24px;
    }
}