/**** Blog Listing Page - Style ****/
.blog .blog-section {
    background: #f9f5f4;
}
.blog .blog-img-inner {
    height: 320px;
}
.blog .blog-content {
    padding: 20px 24px;
    max-width: calc(100% - 48px);
}
.blog-pagination ul li a:not(.pagi-btn),
.blog-pagination ul li span {
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #CCC;
    color: var(--primary-color);
}
.blog-pagination ul li a:not(.pagi-btn):hover,
.blog-pagination ul li span {
    background-color: var(--primary-color) ;
    color: #CCC;
}
.blog-pagination ul {
    column-gap: 12px;
}
.blog .blog-item-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog .blog-item-inner .blog-content {
    flex: 1;
}
.blog .blog-items {
    margin: 0 -8px;
}
.blog .blog-items .blog-item {
    width: 33.33%;
    padding: 0 8px;
    margin-bottom: 24px;
}
.blog-banner-image,
.blog-banner-section {
    position: relative;
    height: 300px;
}
.blog-banner-image.about-banner-image,
.blog-banner-section.about-banner {
    height: 500px;
}
.blog-banner-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.image-overlay {
    background: var(--black-color);
    opacity: 0.4;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.blog-banner-inner-main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
}
.blog-banner-inner h1 {
    color: var(--white-color);
    font-size: 38px;
    line-height: 46px;
}
/**** Blog Listing Page - Style END ****/
/**** Single Blog Page - Style ****/
.blog-detail-pg .container {
    width: 800px;
}
.blog-detail-banner h1 {
    font-size: 38px;
    font-weight: 600;
    line-height: 46px;
}
.blog-detail-text {
    column-gap: 16px;
    margin-bottom: 40px;
    font-style: italic;
}
.social-icons.blog-social {
    column-gap: 12px;
    margin-bottom: 40px;
}
.comment-form-main h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
}
.comment-form-main .form-label {
    font-family: var(--heading-font);
    font-weight: 500;
}
.comment-form-main .form-label span {
    color: #f40000;
}
.comment-form-main .field:not(:first-child) {
    margin-top: 16px;
}
.comment-form-main .button {
    padding: 13px 32px;
    background: transparent;
    cursor: pointer;
    outline: none;
}
.comment-form-main .button:hover,
.comment-form-main .button:focus {
    background: var(--secondary-color);
}
.comment-listing {
    margin-bottom: 24px;
}
.comment-data {
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
} 
.comment-inner {
    align-items: flex-end;
}
/**** Single Blog Page - Style END ****/
/**** Responsive Style ****/
@media screen and (max-width: 1200px) { 
    .blog .blog-content {
        padding: 12px 14px;
        max-width: calc(100%);
    }
    .blog .blog-img-inner {
        height: 240px;
    }
}
@media screen and (max-width: 1023px) {     
    .blog .blog-items .blog-item {
        width: 50%;
    }
    .blog-detail-pg .container {
        width: 100%;
    }
    .blog-detail-banner h1 {
        font-size: 24px; 
        line-height: 32px;
    }
}
@media screen and (max-width: 767px) {     
    .blog .blog-items .blog-item {
        width: 100%;
    }
    .blog .blog-item-inner .blog-content {
        max-width: 100%;
    }
    .blog .blog-img-inner {
        height: 300px;
    }
    .blog-banner-inner h1 {
        margin-bottom: 12px;
    }
    .comment-form-main .button {
        padding: 10px 20px;
    }
    .blog-detail-text { 
        margin-bottom: 24px;
    }
    .blog-detail-pg .content h3 {
        font-size: 20px;
        line-height: 26px;
    }
}
/**** Responsive Style END ****/