.blog-posts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.blog-posts-list .blog-card-preview {
    width: calc(1/3*100% - (1 - 1/3)*30px);
    background: #EAEAEA;
    border-radius: 5px;
    overflow: hidden;
}

.blog-posts-list .blog-card-preview .image {
    width: 100%;
    height: 250px;
}

.blog-posts-list .blog-card-preview .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-posts-list .blog-card-preview .content {
    padding: 15px;
    font-size: 15px;
}

.blog-posts-list .blog-card-preview h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-posts-list .blog-card-preview .date {
    margin-bottom: 10px;
}

.blog-posts-list .blog-card-preview .read {
    font-weight: 700;
    font-size: 16px;
    display: block;
    color:  var(--link--color);
    margin-top: 20px;
}

.blog-pagination {
    margin: 40px 0 60px;
    text-align: center;
}

.blog-pagination .page-numbers {
    padding: 7px 12px;
    display: inline-block;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    margin-right: 5px;
}

.single-blog-post-content ul,
.single-blog-post-content ol,
.single-blog-post-content p {
    margin-bottom: 20px;
}

.single-blog-post-content ul li,
.single-blog-post-content ol li {
    margin-bottom: 10px;
}

.single-blog-post-content ul li:last-child,
.single-blog-post-content ol li:last-child {
    margin-bottom: 0;
}

.single-blog-post-content img {
    border-radius: 5px;
}

/*** single blog post ***/
.single-blog-post .date {
    border-bottom: 1px solid #EBEBEB;
    border-top: 1px solid #EBEBEB;
    padding: 10px;
    margin: 20px 0;
}

/*** widget ***/
.blog-sidebar {
    padding-top: 30px;
}

.blog-sidebar .widget {
    margin-bottom: 40px;
}

.blog-sidebar .widget .title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

/*** recent blog post widget ***/
.splide--latest-blog-slider .item {
    display: flex;
    overflow: hidden;
    border: solid 1px #f2f1ec;
    border-radius: 5px;
    align-items: flex-start;
    background: #fff;
}

.splide--latest-blog-slider .item .image {
    width: 75px;
    height: 75px;
    min-width: 75px;
}

.splide--latest-blog-slider .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.splide--latest-blog-slider .item .content {
    padding: 10px;
    color: var(--body-color);
}

.splide--latest-blog-slider .splide__arrow svg {
    display: none;
}

.splide--latest-blog-slider .splide__arrow {
    background-color: var(--link--color);
}


.splide--latest-blog-slider .splide__arrows.splide__arrows--ttb {
    position: absolute;
    top: calc(95% - 6px);
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    z-index: 20;
}

.splide--latest-blog-slider .splide__arrows--ttb .splide__arrow--prev,
.splide--latest-blog-slider .splide__arrows--ttb .splide__arrow--next {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: auto;
    right: auto;
}

.splide--latest-blog-slider  .splide__arrow.splide__arrow--prev:before {
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.splide--latest-blog-slider  .splide__arrow.splide__arrow--next:before {
    right: 18px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

.splide--latest-blog-slider .splide__arrows--ttb .splide__arrow--prev:before {
    transform: rotate(45deg);
    top: 17px;
    left: 14px;
}

.splide--latest-blog-slider .splide__arrows--ttb .splide__arrow--next:before {
    transform: rotate(45deg);
    top: 13px;
    left: 14px;
}

.splide--latest-blog-slider .splide__arrows--ttb .splide__arrow--prev {
    margin-right: 13px;
}

.book-banner {
    border-radius: 5px;
    overflow: hidden;
    background: url(../images/sidebar-need-help-img.png) no-repeat;
    background-size: cover;
    position: relative;
    padding: 1rem;
    color: #fff;
}

.book-banner .offer-title {
    font-weight: 700;
    max-width: 80%;
    margin-bottom: 20px;
}

.book-banner .offer-description {
    margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
    .blog-posts-list .blog-card-preview {
        width: calc(1/2*100% - (1 - 1/2)*30px);
    }
}

@media only screen and (max-width: 991px) {
    .blog-posts-list .blog-card-preview {
        width: 100%;
    }
}