#articles {
    padding: 35px 0 80px 0;
    background-color: #f7f6f6;
}
#articles article {
    padding: 10px 0;
    position: relative;
    border-bottom: 1px solid #acacac;
}
#articles article.single {
    border-bottom: none;
}
#articles article .image {
    width: 250px;
    height: 165px;
    background-size: cover;
    background-position: center center;
    float: left;
    margin-right: 30px;
}
#articles article.single .image {
    margin-bottom: 30px;
}
#articles article .title {
    font-size: 20px;
    margin-bottom: 10px;
}
#articles article .date {
    font-size: 16px;
    font-weight: 100;
}
#articles article .excerpt {
    font-size: 16px;
    font-weight: 300;
    color: #1b1b1b;
    margin-top: 25px;
}
#articles article .text {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 300;
    color: #1b1b1b;
    margin: 25px 0;
}
#articles article .read_more {
    font-size: 16px;
    font-weight: 300;
    position: absolute;
    right: 0;
    bottom: 10px;
}
#articles .article_image {
    height: 100px;
    width: 100px;
    background-size: cover;
    background-position: center center;
}
#articles .article_image a{
    display: block;
    width: 100%;
    height: 100%;
}
#articles .article_image a:after {
    left: 20px;
    top: 20px;
}

@media (max-width: 690px) {
    #articles article .image {
        margin: 0 0 20px;
        width: 100%;
        height: 300px;
    }
    #articles article .excerpt {
        margin-bottom: 25px;
    }
}