﻿.article_container {
    display:inline-flex;
}
.article_card {
    display: inline-block;
    max-width: 365px;
    padding: 10px;
    background-color: #efefef;
    margin-bottom: 5px;
    height:100%
}

.article_image {
    max-width: 365px;
    max-height: 220px;
    overflow: hidden;
    margin: auto;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.article_title a {
    font-size: 1.3em;
    text-decoration: none;
    color: dimgrey;
    font-weight: bold;
}

    .article_title a:hover {
        text-decoration: underline;
    }

.article_by {
    margin-top: 10px;
    font-weight: bold;
}

.article_body {
    margin-top: 10px;
}

.premiere_winners {
    display:inline-block;
    width: 48%;
    overflow: hidden;
    margin-bottom: 3px;
    box-sizing: border-box;
    background-color: #efefef;
}

    .premiere_winners a {
        font-size: 1.0em;
        text-decoration: none;
        color: dimgrey;
        font-weight: bold;
    }

        .premiere_winners a:hover {
            text-decoration: underline;
        }
@media only screen and (max-width:500px) {
    .article_container {
        display: inline-flex;
        margin-top:20px
    }

    .article_card {
        width: 100%;
        padding: 0px;
    }

    .article_image {
        width: 100%
    }

    .premiere_winners {
        width: 100%
    }
}