.block__articles_blog .index-news {
    width: 100%;
}

.block__articles_blog .index-news .news-element {
    width: calc(33% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background-color: #F4F4F6;
    border-radius: 6px;
    padding: 45px 50px;
}
.block__articles_blog .index-news .news-element:hover {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s all ease;
}

.block__articles_blog .index-news .news-element:hover .title {
    color: #d20a11;
    transition: 0.3s all ease;
}

@media (max-width: 768px) {
    .block__articles_blog .index-news .news-element {
        width: 100%;
    }
    .index-news .news-element .news-element__img {
        height: auto;
    }
}

.block__articles_blog .index-news .news-element__img img {
    filter: none;
}

.index-news__elements .news-element .title {
    min-height: 56px;
    font-weight: 500;
    font-size: 22px;
    color: #262c40;
    line-height: 28px;
    margin: 0;
}

@media (max-width: 991px) {
    .index-news__elements .news-element .title {
        min-height: 84px;
    }
}

@media (max-width: 768px) {
    .index-news__elements .news-element .title {
        min-height: auto;
    }
}

@media (max-width: 425px) {
    .index-news__elements .news-element .title {
        font-size: 18px;
    }
}

.text {
    color: #262C40;
}