.news .blocks {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 20px;
    margin: 30px 0;
}
.news .block {
    display: flex;
    flex-direction: column;
    width: 40%;
    height: 200px;
    padding: 25px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.date_news, .title_news, .description_news {
    font: 16px Inter;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
}
.title_news {
    font: 22px Inter;
    font-weight: bold;
    margin-bottom: 10px;
}
.date_news {
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.5);
}
.description_news {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}