.featuredEvents {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center -290px;
}
.featuredEvents .blogPostsGrid
{
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "post1 post2 post3";
}
.featuredEvents .event_title
{
    font-size: 1.4rem;
    font-weight: normal;
    color: #666;
    text-decoration: none;
}
.featuredEvents .event_time
{
    font-size: 1.6rem;
    line-height: 1;
    font-weight: bold;
    letter-spacing: normal;
    color: #264653;
    margin: 10px 0;
}

.featuredEvents .buttonContainer {
    margin-top: 50px;
    text-align: center;
}

.eventThumb {
    background-color: rgba(255, 255, 255, 0.81);
    padding: 20px 50px;
    min-height: 130px;
    overflow: hidden;
}

@media screen and (max-width: 992px) {

    .featuredEvents .blogPostsGrid
    {
        grid-template-columns: 1fr;
        grid-template-areas: "post1" "post2" "post3";
    }
    .eventThumb
    {
        margin-bottom: 30px;
    }
    .eventThumb:last-of-type {
        margin-bottom: 0;
    }
}
