.layout-blog {
    padding: 0 0 50px;
    background-color: #efefef;
}

.layout-blog h2 {
    padding-top: 50px;
    margin-bottom: 30px;
}

.layout-blog article {
    margin-bottom: 30px;
}

.layout-blog article > .inner,
.layout-featured-news article > .inner {
    position: relative;
    background-color: $white;
    padding-bottom: 15px;
    height: 350px;
}

.article-content {
    padding: 30px 15px 0;
}

.article-excerpt {
    height: 95px;
}

.article-meta-wrapper {
    position: absolute;
    bottom: 20px;
    left: 15px;
}

.featured-post .article-meta-wrapper {
    left: auto;
}

.featured-post .article-featured-image {
    height: 350px;
}

article h4 a {
    color: $black-70;
}

.article-excerpt {}

.article-meta {
    text-transform: uppercase;
    font-size: 12px;
    color: #989898;
    margin-bottom: 0;
}

.article-category {
    font-weight: bold;
    color: $black-70;
}

.article-category a {
    color: $black-70;
}

.article-featured-image {
    position: relative;
    display: block;
    height: 160px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.article-featured-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: #000;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    transition: ease opacity 0.25s;
    visibility: visible;
}

.article-featured-image:hover::after {
    opacity: 0;
    visibility: hidden;
}

.layout-blog article.featured-post > .inner {
    font-size: 0;
}

.featured-post .article-featured-image {
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

.featured-post .article-content {
    display: inline-block;
    width: 50%;
    vertical-align: top;
}
@media screen and (max-width:1367px) {
    .article-meta {
        font-size: 12px !important;
    }
}
@media screen and (max-width: 1050px) {
    .article-meta {
        font-size: 11px !important;
    }

    .article-excerpt p {
        font-size: 14px;
    }
}
@media screen and (max-width:600px) {
    .layout-blog {
        background-color: $white;
        padding-bottom: 0;
    }

    .blog-roll-wrapper .row {
        background-color: #e4e4e4;
        padding-top: 30px;
    }

    .layout-blog h2 {
        padding-top: 30px;
    }

    #more_posts {
        margin-bottom: 60px;
    }

    .featured-post .article-featured-image {
        height: 360px;
    }
}
