.blogPostsGrid
{
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "post1 post2 post3";
}

.postThumb {
    background: #f5f5f5;
}

.postThumb .post_content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "time category" "title title" "summary summary";
    padding: 20px;
    margin-bottom: 20px;
}

.postThumb .post_time
{
    grid-area: time;
    font-size: 1.2rem;
    font-weight: bold;
    color: #264653;
    text-decoration: none;
}
.postThumb .post_category
{
    grid-area: category;
    font-size: 1.2rem;
    font-weight: bold;
    color: #e76f51;
    text-decoration: none;
    text-align: right;
}
.postThumb .post_title
{
    grid-area: title;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: bold;
    letter-spacing: normal;
    color: #264653;
    margin: 10px 0;
}

.postThumb .post_summary
{
    grid-area: summary;
    font-size: 1.4rem;
    color: #565656;
    transition: 0.5s;
    height: 90px;
    overflow: hidden;
}
.postThumb:hover .post_summary {
    color: #2a9d8f;
}
.featuredPosts .buttonContainer {
    margin-top: 50px;
    text-align: center;
}

@media screen and (max-width: 992px) {

    .blogPostsGrid
    {
        grid-template-columns: 1fr;
        grid-template-areas: "post1" "post2" "post3";
        grid-row-gap: 30px;
        margin: 0 -15px;
    }
    .blogpost
    {
        margin-bottom: 30px;
    }
    .blogpost:last-of-type {
        margin-bottom: 0;
    }
}
