.fudugo-post-slider {
    position: relative;
    padding: 10px 40px;
}
.fudugo-post-slider .swiper-button-next,
.fudugo-post-slider .swiper-button-prev,
.fudugo-post-slider .swiper-pagination {
    display: none !important;
}
.fudugo-card {
    display: flex;
    min-height: 260px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.fudugo-card-image,
.fudugo-card-content {
    width: 50%;
    flex: 0 0 50%;
}

.fudugo-card-image img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

.fudugo-card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f8f9fb;
}

.fudugo-card-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
    color: #111827;
    text-align: center;
}

.fudugo-post-slider .swiper-button-next,
.fudugo-post-slider .swiper-button-prev {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #42c1b3;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
    color: #111827;
}

.fudugo-post-slider .swiper-button-next:after,
.fudugo-post-slider .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .fudugo-card {
        flex-direction: column;
    }

    .fudugo-card-image,
    .fudugo-card-content {
        width: 100%;
        flex: 0 0 100%;
    }

    .fudugo-card-content {
        min-height: 140px;
    }

    .fudugo-card-title {
        font-size: 20px;
    }
}