﻿.article_container {
    flex: 50%;
}
.article_card {
    display: inline-block;
    width: 100%;
    min-width: 255px;
    background-color: #efefef;
    margin-bottom: 5px;
    height: 100%;
    border-radius: 8px;
}

.article_image {
    width: 100%;
    max-height: 220px;
    overflow: hidden;
    margin: auto;
    margin-bottom: 10px;
}
    .article_image img {
        border-radius: 8px
    }


.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;
}

.article_textbox {
    margin: 10px;
    height: 195px;
    overflow-y: hidden;
}

.premiere_winners {
    display:inline-block;
    width: 49%;
    overflow: hidden;
    margin-bottom: 3px;
    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;
        }

.hot_new_poets {
    width: 100%;
    overflow: hidden;
    margin-bottom: 6px;
    white-space: nowrap;
    height: 29px;
    overflow-y: hidden;
    overflow-x: hidden
}

    .hot_new_poets a {
        font-size: 1.0em;
        text-decoration: none;
        color: dimgrey;
        vertical-align: super
    }

        .hot_new_poets a:hover {
            text-decoration: underline;
        }

* {
    box-sizing: border-box;
}

.row {
    display: flex;
    column-gap: 10px;
}

@media only screen and (max-width:800px) {
    .row {
        display: block;
        column-gap: 10px;
    }

    .article_container {
        width: 100%;
        margin-top: 20px;
    }

    .article_card {
        width: 100%;
        padding: 0px;
    }

    .article_image {
        width: 100%;
        max-height: 320px;
    }

    .article_textbox {
        height: 100%;
    }
    .premiere_winners {
        width: 100%
    }
}