/*2019 blogroll design update styles*/
.blog #content {
/*    background: rgba(211,211,211,.35);*/
    background: transparent;
}
.grid {
    display: grid;
}
.flex {
    display: flex;
}
.blog-home-title {
 font-size: 24px;   
}
.card-flex {
    flex-direction: column;
}
.home-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 15px;
    grid-column-gap: 10px;
}
@media screen and (max-width: 767px) {
    .home-grid,
    .blog-home-title {
        padding: 0 5px;
    }
}
#primary .home-grid .main_blog {
    margin: 0;
    padding: 0 0 5px 0;
    outline: 1px solid #E8EBF7;
}
.card-flex .thumb-wrapper,
.card-flex .entry-header,
.card-flex .excerpt_text {
    margin-top: auto;
}
.card-flex .excerpt_text {
    margin-left: 11px;
    margin-right: 5px;
    margin-bottom: 10px;
}
.card-flex .thumb-wrapper {
    align-self: center;
}
.home-grid .entry-title a,
.home-grid .entry-title a:hover {
    font-size: 16px;
}
.home-grid-btn-container {
    text-align: center;
    margin-top: auto; /*to snap this box to the bottom of the card*/
}
.home-grid-btn-container .btn {
    color: rgba(126,230,68,1);
    border-color: rgba(126,230,68,1);
    text-transform: uppercase;
    padding: 3px 6px 3px 6px;
    font-size: 12px;
}
@media screen and (min-width: 768px) {
    .home-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}