.news{
    padding: 25px 0;
}
/* Список новостей */
.news__item{
    display: flex;
    justify-content: start;
    align-items: center;
    list-style: none;
    margin: 30px 0;
}
.news__img{
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}
.news__img img{
    min-width: 100%;
    min-height: 100%;
    transition: opacity .5s;
}
.news__img:hover img{
    opacity: 0.8;
}
/* Новости контент */
.news__title{
    display: flex;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    color: #262626;
    text-decoration: none;
    transition: color .5s;
}
.news__title:hover{
    color: rgb(0, 255, 96);
}
.news__date{
    margin-bottom: 15px;
    font-size: 14px;
    color: rgb(166, 158, 154);
}
.news__date ion-icon{
    padding-right: 5px;
    padding-top: 2px;
}
.news__text{
    max-width: 800px;
    margin-bottom: 15px;
}
.news__detailed{
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(0, 255, 96);
    color: rgb(0, 255, 96);
    text-decoration: none;
    transition: color .5s, border-bottom .5s;
}
.news__detailed:hover{
    color: #262626;
    border-bottom: 1px solid #262626;
}
@media (max-width: 768px) {
    .news__item {
        flex-direction: column-reverse;
        margin: 20px 0;
    }
    .news__content{
        margin-bottom: 35px;
    }
    .news__img {
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        max-width: 100%;
        margin-right: 0;
    }
    .news__title{
        font-size: 20px;
    }
}
/*
@media (max-width: 425px) {
    .news__img {
        height: 560px;
    }
}