.articles__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1.2
}
.articles__img {
    width: 200px;
    height: 140px;
    border-radius: 3px;
    margin-right: 30px;
}
.articles__label {
    font-size: 16px;
    color: #757b92;
    text-transform: uppercase;
}
.articles__title {
    display: inline-block;
    margin-top: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #404557;
    text-transform: uppercase;
}
.articles__title:hover {
    color: #404557;
}
.articles__text {
    margin-top: 5px;
    font-size: 18px;
    color: #757b92;
}
.articles__more {
    display: inline-block;
    margin-top: 10px;
    padding: 0 0 2px;
    border-bottom: 1px solid #0fa1ef;
    font-size: 18px;
    color: #0086c1;
}
.articles__more:hover {
    color: #0fa1ef;
}
@media (max-width: 1200px) {
    .articles__picture {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .articles__content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-top: 15px;
    }
}