.blog-home-hero {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 60px 0 70px;
    z-index: 100;
    color: #fff;
    padding-top: calc(var(--header-height) + 100px); 
    margin-top: var(--header-height-invert);
    background-repeat: no-repeat;
    background-position: 0 0;
}

.blog-home-hero:before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--hero-background-color);
    z-index: 150;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.blog-home-hero > .container {
    position: relative;
    z-index: 200;
}

.blog-home-hero h1 {
    color: #fff;
}

.blog-home-hero .text {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.blog-template .blog-right-container {
    width: 250px;
    flex-shrink: 0;
}

.blog-card-preview-holder {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-left-container .blog-card-preview {
    color: var(--service-thumbnail-color) !important;
    background: var(--service-thumbnail-background-color);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    width: calc(1/3*100% - (1 - 1/3)*30px);
}

.blog-left-container .blog-card-preview h2 {
    font-size: 22px;
}

.blog-left-container .blog-card-preview > a {
    display: block;
    width: 100%;
}

.blog-left-container .blog-card-preview .image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.blog-left-container .blog-card-preview .image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.blog-left-container .blog-card-preview .content .date {
    margin-bottom: 10px;
}

.blog-left-container .blog-card-preview .content {
    padding: 20px;
}

.blog-pagination {
    margin: 40px 0 60px;
    text-align: center;
    width: 100%;
}

.blog-pagination .page-numbers {
    padding: 7px 12px;
    display: inline-block;
    border: 1px solid #EBEBEB;
    border-radius: var(--border-radius);
    margin-right: 5px;
}

.single-post-content img {
    border-radius: 50px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.single-post-content .breadcrumbs,
.single-post-content .breadcrumbs a{
    color: var(--breadcrumb-color-on-post);
}

.single-post-content  .breadcrumbs span.separator {
    background: var(--breadcrumb-color-on-post);
}

.single-post-content .breadcrumbs div:last-of-type,
.single-post-content .breadcrumbs div:last-of-type a {
    color: var(--breadcrumb-color-active-on-post);
}

.category-label {
    margin-bottom: 10px;
}

.category-label .label {
    padding: 2px 10px;
    text-transform: uppercase;
    background: var(--category-label-background);
    color: var(--category-label-color);
    display: inline-block;
    font-size: 10px;
    border-radius: 5px;
}

@media only screen and (min-width: 992px) {
    .blog-template {
        display: flex;
        gap: 30px;
    }
}

@media only screen and (max-width: 776px) {
    .blog-left-container .blog-card-preview {
        width: 100%;
    }
}
