/* BLOG MAIN LIST */
.blog-post-list-wrap .blog-post {
    position: relative;
    text-align: left;
    border: 1px solid #ccc;
    box-shadow: none;
    box-sizing: border-box;
    color: #777;
    box-shadow: 0px;
    margin-bottom: 1rem;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
    padding-right: 0;
}

.post-left {
    padding: 2rem;
}

.blog-post-list-wrap .post-featured-image {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 0;
}

.blog-post-list-wrap .post-featured-image:empty {
    display: none;
}

.blog-post-list-wrap .post-featured-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
    border: 0;
    border-radius: 1rem 1rem 0 0;
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 1000px) {
    .blog-post-list-wrap .blog-post {
        padding-right: 33.3%;
    }

    .blog-post-list-wrap .post-featured-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 33.3%;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .blog-post-list-wrap .post-featured-image img {
        border-radius: 0 1rem 1rem 0;
    }
}

.blog-post-list-wrap .blog-post .button {
    margin-top: 2rem;
}

.post-title {
    margin-bottom: .5rem;
    font-size: 2rem;
}

.post-title a {
    text-decoration: none;
}

.meta {
    margin-bottom: 2rem;
    font-size: 80%;
    opacity: 0.7;
}

/* Blog Sidebar Styles */
.blog-sidebar .category-list {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid #ccc;
}

.blog-sidebar .category-list a {
    text-decoration: none;
    display: block;
    margin: .5rem 0;
    padding: 1rem;
    line-height: 1;
    font-size: 90%;
    background: #1A1919;
    color:#fff;
    border-radius: .5rem;
    transition: background ease 0.3s
}

.blog-sidebar .category-list a:hover {
        background: #1A1919;
}

.blog-sidebar .top-post {
    padding: .5rem 0;
}

.blog-sidebar .top-post a {
    text-decoration: none;
}

.blog-sidebar ul, .blog-sidebar li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-sidebar .all-posts {
    margin-top: 20px;
    display: inline-block;
}

.blog-sidebar h3 {
}

.blog-search {
    padding-bottom: 0;
}

.blog-search input[type=text] {
    margin: 0;
    max-width: 100%;
    width: calc(100% - 100px);
    float: left;
    height: 50px;
    font-size: 90%;
    padding: 6px 10px;
    border-radius: 1rem 0rem 0rem 1rem;
}

.blog-search input[type=button] {
    float: left;
        height: 50px;
        margin: 0;
    width: 100px;
    border-radius: 0 1rem 1rem 0rem;
}

/* Blog Single */

.post-content p span,
.post-content h2 span{
    line-height: 100% !important;
        color: initial !important;
    margin: initial !important;
    padding: initial !important;
}

.blog-single .post-featured-image {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 300px;
    margin: 0;
    padding: 0;
    margin-bottom: 4rem;
}

.blog-single .post-featured-image:empty {
    display: none;
}

.blog-single .post-featured-image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
    border: 0;
    border-radius: 1rem;
}

.back-button {
    margin-bottom: 4rem;
}