/* -- FIXES -- */

.preview_list .article .title {
    text-decoration: none;
}

/* -- LAYOUT -- */

.preview_list .article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* -- STYLING -- */

.preview_list .article .image {
    border: 1px solid #eeeeee;
}

.preview_list .article a img {
    vertical-align: middle; /* [!] a hack to avoid extra space after the link */
}

.preview_list .article .title {
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'Roboto Bold';
    color: #212121;
    border-bottom: 2px solid white;
}

.preview_list .article .title:hover {
    border-bottom: 2px solid #212121;
}

.preview_list .article .body {
    color: #454545;
}

/* -- SPACING -- */

.preview_list .article .title {
    margin-top: 30px;
    margin-bottom: 17px;
    max-width: 370px;
}

.preview_list .article .body {
    line-height: 25px;
    padding-bottom: 10px;
    max-width: 370px;
}

/* == MOBILE == */

@media screen and (max-width: 920px) {
    /* -- SPACING -- */
    .preview_list .article .title {
        margin-top: 15px;
        margin-bottom: 0px;
        max-width: 300px;
    }
    .preview_list .article .body {
        max-width: 300px;
    }
    .preview_list .article a img {
        max-width: 300px;
    }
}
