.news {
    padding: 1rem 0 2rem;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 3rem;
}

.news__list {
    margin: 1rem 0;
}

.news__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.news__item:last-child {
    border-bottom: unset;
    margin-bottom: 0;
}

.news__item__image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 1rem;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.news__item__image img {
    width: 100%;
    height: auto;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.news__item__image:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.news__item__image:hover img {
    -webkit-transform: scale(1.2) rotate(4deg);
    transform: scale(1.2) rotate(4deg);
}

.news__item__image:hover:after {
    top: 0;
    height: 100%;
}

.news__item__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.news__item__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news__item__date {
    font-size: .7rem;
    line-height: .7rem;
    color: #a4a4a4;
    margin-bottom: .5rem;
}

.news__item__title {
    font-family: "Gotham Medium";
    font-size: 1.2rem;
    line-height: 1.2rem;
    color: #1fbc53;
    margin-bottom: .5rem;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.news__item__title:hover {
    color: #1fbc53;
    text-decoration: underline;
}

.news__item__text {
    font-family: "Gotham";
    font-size: .9rem;
    line-height: 1.1rem;
    color: #333;
}

.news__item__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
    color: #1fbc53;
    font-family: "Gotham";
    font-size: .9rem;
    line-height: .9rem;
    padding: .8rem 1rem;
    margin: .5rem .5rem 0 0;
    border: 1px solid #1fbc53;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.news__item__button .icons {
    fill: #1fbc53;
    width: .8rem;
    height: .8rem;
    margin-left: .5rem;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}

.news__item__button:hover {
    color: #fff;
    background: #1fbc53;
    -webkit-box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.11);
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.11);
}

.news__item__button:hover .icons {
    fill: #fff;
}

.news__item__button:active {
    -webkit-box-shadow: inset 0 3px 3px 0 rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 3px 3px 0 rgba(0, 0, 0, 0.08);
    color: #1fbc53;
    background: #fff;
}

.news__item__button:active .icons {
    fill: #1fbc53;
}
.news__item__text--detail {
    margin-top: 10px;
}

@media (min-width: 576px) {
    .news__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .news__item__image {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 40%;
        flex: 0 0 40%;
        margin-right: 1rem;
    }
}

@media (min-width: 768px) {
    .news__item__image {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 30%;
        flex: 0 0 30%;
    }
}

@media (min-width: 992px) {
    .news__item {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        align-items: stretch;
    }

    .news__item__block {
        margin-top: auto;
    }

    .news__item__image {
        margin-bottom: 0;
    }

    .news__item__text {
        width: 80%;
    }
}
