.news_more__wrap {
    display: flex;
    justify-content: flex-start;
    gap: 0.5em;
    margin-top: 1em;
}

.news_more__block {
    padding: 1em 1em;
    border-radius: 0.5em;

    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 2em;
    justify-content: space-between;
    background: #F3F0F0;
}
.section_news_more span {
    font-size: 2.2em;
    font-family: 'OpenSans-Bold';
    color: #363636;
    line-height: 1.3;
    padding: 0;
    margin: 40px 0 20px;
    text-align: left;

}
.news_more__content span {
    font-size: 1.2em;
    margin: 0;
    font-family: 'OpenSans-Bold';
    color: #363636;
    line-height: 1.3;
    padding: 0;
    text-align: left;
}
.news_more__img {
    height: 11em;
    margin-bottom: 1em;
}




.news_more__content p{
    display: -webkit-box;
    -webkit-line-clamp: 3;           /* Количество отображаемых строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    max-height: calc(1.2em * 3);    /* 3 строки */


}
.section_news_more{
    margin-top: 2em;
}