.preview-news{
    width:600px;
    float: left;
}

.preview-news .news{
    width:746px;
    padding-left: 0px
}


.news-bottom{
    margin-top: 1px;
    margin-left: 20px;
    margin-bottom: 8px;
}

.news-bottom a{
    font-weight: bold;
}

.n_link {
    color: #ef0009;
    text-decoration: underline;
    white-space: nowrap; /* Запрещаем перенос строк */
    overflow: hidden; /* Обрезаем все, что не помещается в область */
    text-overflow: ellipsis; /* Добавляем многоточие */
}
.news-block{
    text-align: center;
    flex-direction: column;
    justify-content: space-evenly;
    display: flex;
}

.news-item {
    margin-top: 15px;
    line-height: 20px;
    padding-left: 3px;
    width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 468px;
}

.news-container{
    text-align: start;
    flex-direction: column;
    justify-content: center;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    height: 170px;
}

.back-btn{
    margin-top: 30px;
    margin-left: 20px;
}

@media(max-width: 977px){
    .news-container{
        flex-wrap: nowrap;
        height: auto;
    }
    .news-item{
        width: 100%;
    }
}

@media(max-width: 768px){
    .n_link {
        white-space: normal;
    }
}