.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* gap: 20px; */
    transform: scale(1.03);
}

.blog-post h3 {
    font-size: 20px;
    line-height: 1.3em;
    color: #140532;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* max-height: 3em;  Adjust based on font size */
}

.blog-post p {
    display: none;
    font-size: 16px;
    /* display: -webkit-box; */
    -webkit-line-clamp: 2; /* Show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 10px 0;
    /* max-height: 3em;  Adjust based on font size */
}

.blog-post .slick-slider {
    display: block !important;
}


.blog-post .blog-post-inner {
    border: 1px solid #ddd;
    background: white;
    /* box-shadow: 0 0 25px rgba(0, 0, 0, .07); */
    /* padding: 25px; */
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    /* margin: 0 20px; */
}

/* .blog-post .blog-post-inner:hover{
    box-shadow: 0 0 25px rgba(0, 0, 0, .15);
} */

.blog-carousel-section-body .slick-track {
    padding: 15px 0;
}

.blog-image img {
    width: 100%;
    height: auto;
}

.blog-post-content {
    padding: 30px;
}

/* .blog-image {
    border-radius: 8px !important;
    overflow: hidden;
} */

.blog-post .read-more {
    display: inline-block;
    color: #140532;
    margin: 10px 0 ;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    letter-spacing: 0;
    text-transform: capitalize;
    font-family: proximanova !important;
}

/* .blog-post .read-more:hover {
    background: #005177;
} */

.blog-post .read-more:before {
    position: absolute;
    width: 100%;
    height: 3px;
    content: "";
    left: 0;
    bottom: -4px;
    background: #8c82ff;
    transition: all .25s ease-in-out;
}

.blog-post .read-more:hover:before {
    width: 50%
}

.blog-post .slick-slide {
    transition: transform 0.3s ease-in-out;
}


/* .slick-center .blog-post-inner {
    margin: 0 45px !important;
} */


.blog-carousel-section-body .slick-arrow.slick-prev {
    /* right: 130px; */
    bottom: 50%;
    transform: rotate(180deg);
    left: -50px;
}

.blog-carousel-section-body .slick-arrow.slick-next {
    bottom: 50%;
    right: -50px;
}

.blog-carousel-section-body .slick-arrow {
    cursor: pointer;
    position: absolute;
    /* bottom: -27px;
    right: 56px; */
    width: 54px;
    height: 54px;
    border: 0;
    font-size: 0;
    background: url(/wp-content/themes/vts/assets/images/ic-arrow-purple-circle.svg) center center no-repeat;
    background-size: contain;
    z-index: 999999;
}



@media only screen and (min-width: 1000px) {
    .blog-carousel-section-content .slick-slide {
        transition: transform 0.3s ease-in-out;
        transform: scale(0.9);
    }
    .blog-carousel-section-content .slick-center.zoomed {
        transform: scale(1);
    }

}

@media only screen and (max-width: 1000px) {
    .blog-carousel-section-content .slick-slide {
        transition: transform 0.3s ease-in-out;
        transform: scale(0.95);
    }
    .blog-carousel-section-body .slick-arrow.slick-next {
        right: 0px;
    }
    
    .blog-carousel-section-body .slick-arrow.slick-prev {
        left: 0px;
    }

    .blog-item__meta {
        margin: 0 0 1rem !important;
    }

}

@media only screen and (max-width: 600px) {
    .blog-carousel-section-body .blog-carousel-section-main .slick-arrow.slick-prev {
        bottom: -10px;
        left: 35%;
        right: auto;
    }
    
    .blog-carousel-section-body .blog-carousel-section-main .slick-arrow.slick-next {
        bottom: -10px;
        right: 35%;
        left: auto;
    }

    .blog-posts {
        transform: scale(1);
    }

    .blog-carousel-section-body .slick-arrow {
        width: 45px;
        height: 45px;
    }
    .blog-post-content {
        padding: 25px;
    }

    .blog-posts .slick-slider {
        z-index: 0;
    }
}