.articles {
    /*display: flex;*/
    /*justify-content: space-between;*/
    margin-bottom: 30px;
}
.articles .article_item{
    /*max-width: 350px;*/
    /*margin: 10px;*/
    border: 1px solid transparent;
    border-radius: 4px;
}
.articles .article-img{
    width: 100%;
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
}
.articles .article-title{
    font-family: PF Bulletin Sans Pro;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    margin: 20px 0;
    height: 50px;
    overflow: hidden;
}
.articles .article-button{
    border: 1px solid #E10886;
    padding: 10px 24px;
    text-align: center;
    font-family: PF Bulletin Sans Pro;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    display: block;
}
@media (max-width: 768px) {
    .articles {
        position: relative;
        margin-bottom: 64px;
    }
        .articles .article_item{max-width: none; margin: 0}
}