.wpl-blog-grid {
    display: grid;
    gap: 20px;
}

.wpl-blog-carousel {
    position: relative;
}

.wpl-blog-post {
    background: transparent;
    border-radius: 5px;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    overflow: hidden;
    padding: 20px;
}

.wpl-blog-post .thumbnail img {
    width: 100%;
    object-fit: cover;
}

.wpl-blog-post .title {
    margin: 15px 0;
    font-size: 1.5em;
}

.wpl-blog-post .excerpt {
    margin-bottom: 15px;
    color: #666;
}

.wpl-blog-post .read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.wpl-blog-carousel .swiper-button-prev,
.wpl-blog-carousel .swiper-button-next {
    color: #007bff;
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.wpl-blog-carousel .swiper-pagination-bullet {
    background: #007bff;
}