.posts-carousel-wrapper {
    position: relative;
    width: 100%;
}

.posts-carousel-wrapper .swiper-container {
    width: 100%;
    padding-bottom: 50px;
}

.carousel-post-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.carousel-post-item .post-thumbnail {
    position: relative;
    overflow: hidden;
}

.carousel-post-item .post-thumbnail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.carousel-post-item .post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.carousel-post-item .post-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.carousel-post-item .post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.carousel-post-item .post-title a:hover {
    color: #752429
}

.carousel-post-item .post-meta {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.carousel-post-item .post-meta span {
    margin-right: 15px;
}

.carousel-post-item .post-excerpt {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.posts-carousel-wrapper .swiper-button-next,
.posts-carousel-wrapper .swiper-button-prev {
    color: #752429
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.posts-carousel-wrapper .swiper-button-next:hover,
.posts-carousel-wrapper .swiper-button-prev:hover {
    background: #752429
    color: #fff;
    transform: scale(1.1);
}

.posts-carousel-wrapper .swiper-button-next:after,
.posts-carousel-wrapper .swiper-button-prev:after {
    font-size: 20px;
}

.posts-carousel-wrapper .swiper-pagination {
    bottom: 10px;
}

.posts-carousel-wrapper .swiper-pagination-bullet {
    background: #752429
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.posts-carousel-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-post-item .post-content {
        padding: 15px;
    }
    
    .carousel-post-item .post-title {
        font-size: 16px;
    }
    
    .carousel-post-item .post-thumbnail img {
        height: 200px;
    }
}