
.news_blocks{
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 90px;
}

.news_block{
    border-radius: 8px;
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.05);
    /* background: rgb(255, 255, 255); */
    padding: 24px;
}

.news_block_title{
    margin-bottom: 16px;
}

.news_block div{
    display: flex;
    align-items: center;
    color: rgb(49, 174, 236);
    gap: 8px;
}

@media (max-width: 956px) {
    .news_blocks{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .news_blocks{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 480px) {
    .news_block div{
        font-size: 14px;
    }
}

@media (max-width: 374px) {
    .container{
        padding: 0 10px;
    }
}