/* Новости */

.news-container{

    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 70px;
    display: flex;
    justify-content: start ;
    flex-wrap: wrap;
}

.news-item{
    display: inline-block;
    width: 30%;
    margin-right:1.2%;
    padding-bottom: 20px;
    color:black;
    text-decoration: none;
}


.news-description {
    padding-top: 20px;
}

.news-description h4{
    font-family: Roboto;
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 15px;
}



.news-description p{
    font-family: Roboto;
    font-weight: 300;
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 20px;
}

.news-description .news-date{
    color: #878787;
    font-size: 0.8em;
}

@media screen and (max-width: 1280px){
    .news-container{
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 960px){
    .news-item {
        width: 100%;
    }

    .news-item {
        width: 100%;
        margin-right: 0px;
    }
    .news-item:nth-child(3n+3){
        margin-right: 0px;
    }
}


.load-news{
    display: block;
    width: 250px;
    height: 50px;
    background: black;
    font-family: Roboto;
    color: white;
    font-weight: 700;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin: 0 auto;
}



.load-news:disabled{
    opacity: .4;
}

.button-container{
    margin-bottom: 40px;
    width: 100%;
}