/*layout 1*/
.post-layout-one .blog-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.post-layout-one .blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px 32px;
}
.post-layout-one .blog-list article img.post-image{
    width: 100%;
    height: 270px;
    object-fit: cover;
    margin-bottom: 24px;
}
.post-layout-one .blog-list .category,
.post-layout-one .author-name{
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    margin: 0;
}
.post-layout-one .blog-list a{
    text-decoration: none;
    margin: 8px 0;
    display: block;
}
.post-layout-one .blog-name-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    margin-top: 24px;
}
.post-layout-one .blog-name-wrapper img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.post-layout-one .blog-name-details .post-meta{
    display: flex;
    gap: 8px;
}
.post-layout-one .blog-name-details .post-meta p{
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.post-layout-one .blog-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    cursor: pointer;
    /* width: 1280px; */
    /* padding: 0 20px; */
}
.post-layout-one .category-filter.active {
    border: 1px solid #000;
}
.post-layout-one .category-filter {
    background: transparent;
    border: 0;
    padding: 8px 16px;
}
.post-layout-one .blog-excerpt{
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.layout-one-header{
    padding: 112px 0;
}
.layout-one-header h6{
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 16px;
}
.layout-one-header h1{
    margin: 0;
    text-align: center;
}
.layout-one-header h1 span{
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    font-size: 56px;
}
.layout-one-header p{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    margin-top: 24px;
}
.post-layout-one{
    margin-top: 40px;
}
@media (max-width:1024px){
    .post-layout-one .blog-list{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width:767px){
    .post-layout-one .blog-list{
        grid-template-columns: 1fr;
    }
    .layout-one-header{
        padding: 64px 0;
    }
    .layout-one-header h6{
        margin-bottom: 12px;
    }
    .layout-one-header h1 span{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .layout-one-header p{
        font-size: 16px;
    }
    .post-layout-one{
        margin-top: 24px;
    }
}
/*layout 2*/
.post-layout-two{
    margin-top: 40px;
}
.post-layout-two .blog-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.post-layout-two .featured-post-section{
    padding: 0px 0 40px 0;
}
.post-layout-two .featured-post-section article{
    display: grid;
    gap: 48px;
    grid-template-columns: 50% 1fr;
    align-items: center;
}
.post-layout-two .featured-post-section article img{
    width: 100%;
    height: 426px;
    object-fit: cover;
}
.post-layout-two .blog-list .all-posts-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px 48px;
}
.post-layout-two .blog-list article img.post-image{
    width: 100%;
    height: 346px;
    object-fit: cover;
    margin-bottom: 24px;
}
.post-layout-two .blog-list .category,
.post-layout-two .author-name,
.post-layout-two .featured-post-section article .featured-category{
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    margin: 0;
}
.post-layout-two .blog-list a,
.post-layout-two .featured-post-section article .featured-content a{
    text-decoration: none;
    margin: 8px 0;
    display: block;
}
.post-layout-two .blog-name-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    margin-top: 24px;
}
.post-layout-two .blog-name-wrapper img,
.post-layout-two .featured-post-section article .blog-name-wrapper img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.post-layout-two .blog-name-details .post-meta{
    display: flex;
    gap: 8px;
}
.post-layout-two .blog-name-details .post-meta p{
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.post-layout-two .blog-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    cursor: pointer;
    /* width: 1280px; */
    /* padding: 0 20px; */
}
.post-layout-two .category-filter.active {
    border: 1px solid #000;
}
.post-layout-two .category-filter {
    background: transparent;
    border: 0;
    padding: 8px 16px;
}
.post-layout-two .blog-excerpt{
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.layout-two-header{
    padding: 112px 0;
}
.layout-two-header h6{
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
    margin-bottom: 16px;
}
.layout-two-header h1{
    margin: 0;
    text-align: left;
}
.layout-two-header h1 span{
    font-weight: 700;
    line-height: 120%;
    text-align: left;
    font-size: 56px;
}
.layout-two-header p{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: left;
    margin-top: 24px;
}
@media (max-width:1024px){
    .post-layout-two .blog-list .all-posts-section{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width:767px){
    .post-layout-two .blog-list .all-posts-section{
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .layout-two-header{
        padding: 64px 0;
    }
    .layout-two-header h6{
        margin-bottom: 12px;
    }
    .layout-two-header h1 span{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .layout-two-header p{
        font-size: 16px;
    }
    .post-layout-two .featured-post-section{
        padding: 0 0 24px 0;
    }
    .post-layout-two{
        margin-top: 24px;
    }
    .post-layout-two .featured-post-section article{
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr;
    }
    .post-layout-two .featured-post-section article img{
        width: 100%;
        height:270px;
        object-fit: cover;

    }
}
/*layout 3*/
.post-layout-three{
    margin-top: 40px;
}
.post-layout-three .blog-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.post-layout-three .blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px 32px;
}
.post-layout-three .blog-list article img.post-image{
    width: 100%;
    height: 270px;
    object-fit: cover;
    margin-bottom: 24px;
}
.post-layout-three .blog-list .category,
.post-layout-three .author-name{
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    margin: 0;
}
.post-layout-three .blog-list a{
    text-decoration: none;
    margin: 8px 0;
    display: block;
    padding: 0 24px;
}
.post-layout-three .blog-excerpt,
.post-layout-three .blog-list .category{
    padding: 0 24px;
    text-align: left;
}
.post-layout-three .blog-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.post-layout-three .blog-name-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    margin-top: 24px;
    padding: 0 24px 24px;
}
.post-layout-three .blog-name-wrapper img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.post-layout-three .blog-name-details .post-meta{
    display: flex;
    gap: 8px;
}
.post-layout-three .blog-name-details .post-meta p{
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.post-layout-three .blog-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    cursor: pointer;
    /* width: 1280px; */
    /* padding: 0 20px; */
}
.post-layout-three .category-filter.active {
    border: 1px solid #000;
}
.post-layout-three .category-filter {
    background: transparent;
    border: 0;
    padding: 8px 16px;
}
.post-layout-three .blog-item{
    border: 1px solid #000;
}
.layout-three-header{
    padding: 112px 0;
}
.layout-three-header h6{
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 16px;
}
.layout-three-header h1{
    margin: 0;
    text-align: center;
}
.layout-three-header h1 span{
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    font-size: 56px;
}
.layout-three-header p{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    margin-top: 24px;
}
@media (max-width:1024px){
    .post-layout-three .blog-list{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width:767px){
    .post-layout-three .blog-list{
        grid-template-columns: 1fr;
    }
     .layout-three-header{
        padding: 64px 0;
    }
    .layout-three-header h6{
        margin-bottom: 12px;
    }
    .layout-three-header h1 span{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .layout-three-header p{
        font-size: 16px;
    }
    .post-layout-three{
        margin-top: 24px;
    }
}
/*layout 4*/
.post-layout-four{
    margin-top: 60px;
}
.post-layout-four .blog-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.post-layout-four .featured-post-section{
    padding: 0px 0 60px 0;
}
.post-layout-four .featured-post-section article{
    display: grid;
    gap: 48px;
    grid-template-columns: 50% 1fr;
}
.post-layout-four .featured-post-section article img{
    width: 100%;
    height: 426px;
    object-fit: cover;
}
.post-layout-four .blog-list .all-posts-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px 48px;
}
.post-layout-four .blog-list article img.post-image{
    width: 100%;
    height: 346px;
    object-fit: cover;
    margin-bottom: 24px;
}
.post-layout-four .featured-content{
    padding: 48px 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post-layout-four .blog-list .category,
.post-layout-four .author-name,
.post-layout-four .featured-post-section article .featured-category{
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    margin: 0;
}
.post-layout-four .blog-list a{
    text-decoration: none;
    margin: 8px 0;
    display: block;
    padding: 0 24px;
}
.post-layout-four .featured-post-section article .featured-content a{
    text-decoration: none;
    margin: 8px 0;
    display: block;
}
.post-layout-four .featured-post-section article .featured-content .blog-excerpt,
.post-layout-four .featured-post-section article .featured-content .blog-name-wrapper{
    padding: 0;
}
.post-layout-four .blog-excerpt,
.post-layout-four .blog-list .category{
    padding: 0 24px;
    text-align: left;
}
.post-layout-four .blog-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.post-layout-four .blog-name-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    margin-top: 24px;
    padding: 0 24px 24px;
}
.post-layout-four .blog-name-wrapper img,
.post-layout-four .featured-post-section article .blog-name-wrapper img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.post-layout-four .blog-name-details .post-meta{
    display: flex;
    gap: 8px;
}
.post-layout-four .blog-name-details .post-meta p{
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.post-layout-four .blog-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    cursor: pointer;
    /* width: 1280px; */
    /* padding: 0 20px; */
}
.post-layout-four .category-filter.active {
    border: 1px solid #000;
}
.post-layout-four .category-filter {
    background: transparent;
    border: 0;
    padding: 8px 16px;
}
.post-layout-four .blog-item{
    border: 1px solid #000;
}
.layout-four-header{
    padding: 112px 0;
}
.layout-four-header h6{
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
    margin-bottom: 16px;
}
.layout-four-header h1{
    margin: 0;
    text-align: left;
}
.layout-four-header h1 span{
    font-weight: 700;
    line-height: 120%;
    text-align: left;
    font-size: 56px;
}
.layout-four-header p{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: left;
    margin-top: 24px;
}
@media (max-width:1024px){
    .post-layout-four .blog-list .all-posts-section{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width:767px){
    .post-layout-four .blog-list .all-posts-section{
        grid-template-columns: 1fr;
        gap: 48px;
    }
     .layout-four-header{
        padding: 64px 0;
    }
    .layout-four-header h6{
        margin-bottom: 12px;
    }
    .layout-four-header h1 span{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .layout-four-header p{
        font-size: 16px;
    }
    .post-layout-four .featured-post-section{
        padding: 0 0 48px 0;
    }
    .post-layout-four{
        margin-top: 48px;
    }
    .post-layout-four .featured-post-section article{
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr;
    }
    .post-layout-four .featured-post-section article img{
        width: 100%;
        height:270px;
        object-fit: cover;
    }
    .post-layout-four .blog-list-wrapper{
        gap: 48px;
    }
    .post-layout-four .featured-content {
        padding: 0px 24px 24px 24px;
    }
}
/*layout 5*/
.post-layout-five{
    margin-top: 40px;
}
.post-layout-five .featured-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}
.post-layout-five .featured-list-left .featured-list img{
    width: 100%;
    height: 426px;
    object-fit: cover;
    margin-bottom: 24px;
} 
.post-layout-five .featured-list-right .featured-list img{
    height: 250px;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.post-layout-five .featured-list-right{
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}
.post-layout-five .featured-list-right .featured-list{
    display: flex;
    gap: 24px;
    align-items: center;
} 
.post-layout-five .blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px 48px;
    margin-top: 40px;
}
.post-layout-five .blog-list img{
    width: 100%;
    height: 346px;
    object-fit: cover;
    margin-bottom: 24px;
}
.post-layout-five .featured-list .category,
.post-layout-five .blog-list .category{
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    margin: 0;
    background: #EEEEEE;
    padding: 4px 8px;
    display: inline-block;
}
.post-layout-five .read-time{
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    margin: 0;
}
.post-layout-five .category-wrapper{
    display: flex;
    gap: 16px;
    align-items: center;
}
.post-layout-five .featured-list a,
.post-layout-five .blog-list a{
    text-decoration: none;
    margin: 16px 0 8px 0;
    display: block;
}
.post-layout-five .featured-list-right .featured-list a{
     margin: 16px 0 16px 0;
}
.post-layout-five .blog-list .readmore p{
    margin: 24px 0 0 0;
}
.post-layout-five .featured-list-right .featured-list .readmore p{
    margin: 0;
}
.post-layout-five .blog-list .readmore p a,
.post-layout-five .featured-list .readmore p a{
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
.post-layout-five .blog-list .readmore p a::after,
.post-layout-five .featured-list .readmore p a::after {
    content: '';
    display: inline-block;
    width: 6.69px;
    height: 11.62px;
    margin-left: 16.51px;
    background: url(../images/black-arrow.svg) no-repeat center center;
}
.post-layout-five .blog-excerpt,
.post-layout-five .featured-list .blog-excerpt{
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.layout-five-header{
    padding: 112px 0;
}
.layout-five-header h6{
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
    margin-bottom: 16px;
}
.layout-five-header h1{
    margin: 0;
    text-align: left;
}
.layout-five-header h1 span{
    font-weight: 700;
    line-height: 120%;
    text-align: left;
    font-size: 56px;
}
.layout-five-header p{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: left;
    margin-top: 24px;
}
@media (max-width:767px){
    .layout-five-header{
        padding: 64px 0;
    }
    .layout-five-header h6{
        margin-bottom: 12px;
    }
    .layout-five-header h1 span{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .layout-five-header p{
        font-size: 16px;
    }
    .post-layout-five{
        margin-top: 48px;
    }
    .post-layout-five .featured-list-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        margin-top: 24px;
    }
     .post-layout-five .featured-list-left .featured-list img {
        height: 221px;
    }
    .post-layout-five .featured-list-right {
        gap: 48px;
        margin-bottom: 48px;
    }
    .post-layout-five .featured-list-right .featured-list{
        flex-direction: column;
        align-items: flex-start;
    }
    .post-layout-five .featured-list-right .featured-list img,
    .post-layout-five .blog-list img {
        height: 221px;
        width: 100%;
    }
    .post-layout-five .blog-list{
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px 48px;
        margin-top: 24px;
    }
}

/*layout 8*/
.post-layout-eight{
    margin-top: 40px;
}
.post-layout-eight .featured-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}
.post-layout-eight .featured-list-left .featured-list img{
    width: 100%;
    height: 426px;
    object-fit: cover;
    margin-bottom: 24px;
} 
.post-layout-eight .featured-list-right .featured-list img{
    height: 250px;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.post-layout-eight .featured-list-right{
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}
.post-layout-eight .featured-list-right .featured-list{
    display: flex;
    gap: 24px;
    align-items: center;
} 
.post-layout-eight .blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px 48px;
    margin-top: 40px;
}
.post-layout-eight .blog-list img{
    width: 100%;
    height: 346px;
    object-fit: cover;
    margin-bottom: 24px;
}
.post-layout-eight .featured-list .category,
.post-layout-eight .blog-list .category{
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    margin: 0;
    background: #EEEEEE;
    padding: 4px 8px;
    display: inline-block;
}
.post-layout-eight .read-time{
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    margin: 0;
}
.post-layout-eight .category-wrapper{
    display: flex;
    gap: 16px;
    align-items: center;
}
.post-layout-eight .featured-list a,
.post-layout-eight .blog-list a{
    text-decoration: none;
    margin: 16px 0 8px 0;
    display: block;
}
.post-layout-eight .featured-list-right .featured-list a{
     margin: 16px 0 16px 0;
}
.post-layout-eight .blog-list .readmore p{
    margin: 24px 0 0 0;
}
.post-layout-eight .featured-list-right .featured-list .readmore p{
    margin: 0;
}
.post-layout-eight .blog-list .readmore p a,
.post-layout-eight .featured-list .readmore p a{
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
.post-layout-eight .blog-list .readmore p a::after,
.post-layout-eight .featured-list .readmore p a::after {
    content: '';
    display: inline-block;
    width: 6.69px;
    height: 11.62px;
    margin-left: 16.51px;
    background: url(../images/black-arrow.svg) no-repeat center center;
}
.post-layout-eight .blog-excerpt,
.post-layout-eight .featured-list .blog-excerpt{
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.layout-eight-header{
    padding: 112px 0;
}
.layout-eight-header h6{
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: left;
    margin-bottom: 16px;
}
.layout-eight-header h1{
    margin: 0;
    text-align: left;
}
.layout-eight-header h1 span{
    font-weight: 700;
    line-height: 120%;
    text-align: left;
    font-size: 56px;
}
.layout-eight-header p{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: left;
    margin-top: 24px;
}
@media (max-width:1024px){
    .post-layout-eight .blog-list{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width:767px){
    .layout-eight-header{
        padding: 64px 0;
    }
    .layout-eight-header h6{
        margin-bottom: 12px;
    }
    .layout-eight-header h1 span{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .layout-eight-header p{
        font-size: 16px;
    }
    .post-layout-eight{
        margin-top: 48px;
    }
    .post-layout-eight .featured-list-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        margin-top: 24px;
    }
     .post-layout-eight .featured-list-left .featured-list img {
        height: 221px;
    }
    .post-layout-eight .featured-list-right {
        gap: 48px;
        margin-bottom: 48px;
    }
    .post-layout-eight .featured-list-right .featured-list{
        flex-direction: column;
        align-items: flex-start;
    }
    .post-layout-eight .featured-list-right .featured-list img,
    .post-layout-eight .blog-list img {
        height: 221px;
        width: 100%;
    }
    .post-layout-eight .blog-list{
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px 48px;
        margin-top: 24px;
    }
}
/*layout 6*/
.post-layout-six{
    margin-top: 40px;
}
.post-layout-six .blog-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.post-layout-six .blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px 32px;
}
.post-layout-six .blog-list article img.post-image{
    width: 100%;
    height: 270px;
    object-fit: cover;
    margin-bottom: 24px;
}
.post-layout-six .blog-list .category,
.post-layout-six .author-name{
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    margin: 0;
}
.post-layout-six .blog-list a{
    text-decoration: none;
    margin: 8px 0;
    display: block;
    padding: 0 24px;
}
.post-layout-six .blog-excerpt,
.post-layout-six .blog-list .category{
    padding: 0 24px;
    text-align: left;
}
.post-layout-six .blog-excerpt{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
.post-layout-six .blog-name-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    margin-top: 24px;
    padding: 0 24px 24px;
}
.post-layout-six .blog-name-wrapper img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.post-layout-six .blog-name-details .post-meta{
    display: flex;
    gap: 8px;
}
.post-layout-six .blog-name-details .post-meta p{
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
.post-layout-six .blog-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    cursor: pointer;
    /* width: 1280px; */
    /* padding: 0 20px; */
}
.post-layout-six .category-filter.active {
    border: 1px solid #000;
}
.post-layout-six .category-filter {
    background: transparent;
    border: 0;
    padding: 8px 16px;
}
.post-layout-six .blog-item{
    border: 1px solid #000;
}
.layout-six-header{
    padding: 112px 0;
}
.layout-six-header h6{
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 16px;
}
.layout-six-header h1{
    margin: 0;
    text-align: center;
}
.layout-six-header h1 span{
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    font-size: 56px;
}
.layout-six-header p{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    margin-top: 24px;
}
@media (max-width:1024px){
    .post-layout-six .blog-list{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width:767px){
    .post-layout-six .blog-list{
        grid-template-columns: 1fr;
    }
     .layout-six-header{
        padding: 64px 0;
    }
    .layout-six-header h6{
        margin-bottom: 12px;
    }
    .layout-six-header h1 span{
        font-size: 40px;
        margin-bottom: 20px;
    }
    .layout-six-header p{
        font-size: 16px;
    }
    .post-layout-six{
        margin-top: 24px;
    }
}
