article {
    margin-bottom: 10px;
}

.contentList {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 20px;
}

.contentList article {
    width: 50%;
    margin-bottom: 20px;
    padding: 0 10px;
}

.contentList article a.article_img {
    display: block;
    padding-bottom: 50%;
    /* position: relative; */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
}

.article_img {
    display: block;
    padding-bottom: 75%;
    /* position: relative; */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
}

.contentList .article_title {
    /* position: absolute;
    bottom: 10px;
    left: 10px; */
    text-decoration: underline;
    padding: 10px 0;
    /* opacity: .7;
    padding: 10px;
    color: #fff; */
}

.contentList .article_title a {
    color: #000;
}

.paginateLinks {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.paginateLinks a {
    border: 1px solid #0066cc;
    padding: 5px;
}


@media screen and (max-width: 480px) {

    .contentList {
        display: block;
        margin-top: 20px;
    }
    
    .contentList article {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
}