article {
    margin-bottom: 1em;
    border-radius: 10px;
}

.blogpost {
    display: grid;
    grid-template-rows: auto auto;
}


.post-img {
    display: block;
    margin: auto;
    width: 100%;
    max-height: 100%;
}
.post-info-container {
    padding: 0em 1em 1em 1em;
    color: white;
    background-color: #58636e;
}

.post-title::after {
    content: ' ';
    display: block;
    margin: 16px 0;
    width: 60px;
    height: 8px;
    background: #f2e400;
}


.read-more {
    text-align: center;
    margin: auto;
    height: 2em;
    line-height: 2em;
    width: 8em;
    border: 1px solid;
    cursor: pointer;
}



@media only screen and (min-width: 768px) {

    .horizontal-post {
        display: grid;
        grid-template-columns: auto auto;
    }
}


@media only screen and (min-width: 1500px) {
    /*article {
        background: white;
    }

    .blogpost {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }

    .post-info-container {
        position: relative;
        background-color: #f1f3f5;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 0px;
    }

    .blogpost-info {
        grid-column: 1;
        grid-row: 1;
        position: absolute;
        display: grid;
        grid-template-rows: 3em 1fr 3em;
        max-height: 100%;

    }

    .post-summary {
        overflow: hidden;
    }

    .post-img {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        border-top-left-radius: 0;
        border-bottom-right-radius: 10px;
    }*/

    .big-screen-container {
        padding: 0em 20em 0em 20em;
    }
}