.swiper-c224caec {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.swiper-c224caec .slide-inner {
    display: flex;
    flex-direction: column; /* Keep column for text on top */
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 30px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.swiper-c224caec .swiper-slide-active .slide-inner {
    opacity: 1;
}

.swiper-c224caec .slide-content {
    padding: 30px;
    text-align: center;
    width: 100%;
}

.swiper-c224caec .slide-content h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.swiper-c224caec .slide-content p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}

.swiper-c224caec .slide-image {
    width: 100%;
    max-width: 226px; /* Fixed width */
    height: 489px; /* Fixed height */
    margin: 0 auto;
}

.swiper-c224caec .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .swiper-c224caec .slide-inner {
        flex-direction: column; /* Force column layout even on desktop */
        justify-content: flex-start;
    }
    
    .swiper-c224caec .slide-content {
        width: 100%; /* Take full width */
        text-align: center; /* Center text */
        padding: 40px;
    }
    
    .swiper-c224caec .slide-image {
        width: 226px;
        height: 489px;
        flex-shrink: 0;
    }
}

.swiper-c224caec .swiper-button-next,
.swiper-c224caec .swiper-button-prev {
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: auto;
    bottom: 0;
}

.swiper-c224caec .swiper-button-next {
    right: calc(50% - 50px);
}

.swiper-c224caec .swiper-button-prev {
    left: calc(50% - 50px);
}

.swiper-c224caec .swiper-button-next:after,
.swiper-c224caec .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}