.blog-posts-holder .blog-posts-slider {
    z-index: 2;
    position: relative;
}

.blog-post {
    padding: 0 10px 20px;
}

.blog-post-inner {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(228, 228, 228, 0.3);
}

.post-image {
    overflow: hidden;
    height: 260px;
}

.post-image image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    backface-visibility: hidden;
}

.blog-post .text {
    padding: 30px;
    overflow: hidden;
    color: #232323;
}

.blog-post .text .text-inner {
    height: 90px;
    margin-bottom: 20px;
}

.blog-post .btn {
    border-radius: 5px;
}

.blog-posts-holder:after {
    content:'';
    display: block;
    background-color: #fff;
    width: 100%;
    height: 300px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.blog-posts-holder .splide__pagination li {
    padding: 0 70px;
    position: relative
}

.blog-posts-holder .splide__pagination button {
    margin: 0;
}

.blog-posts-holder .splide__pagination button {
    background-color: transparent;
}

.blog-posts-holder .splide__pagination button.is-active {
    width: 14px;
    height: 14px;
}

.blog-posts-holder .splide__pagination button:before {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: #EDF3FD;
    position: absolute;
    top: 0%;
    margin-top: 12px;
    left: 0
}

.blog-posts-holder .splide__pagination button:after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: #EDF3FD;
    position: absolute;
    top: 0%;
    margin-top: 12px;
    right: 0;
}

.blog-posts-holder .splide__pagination button.is-active:before,
.blog-posts-holder .splide__pagination button.is-active:after {
    background-color: var(--primary-color);
}

@media (max-width:767px) {
    .blog-posts-holder .splide__pagination li {
        padding: 0 15px;
    }
}

