/* General styles for the container */
.swiperer-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

/* Wrapper for the slides */
.swiperer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between columns */
    justify-content: center;
}

/* Each slide occupies 50% (2 columns) */
.swiperer-slide {
    flex: 0 1 48%; /* Two columns with a slight margin for gap */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
   
}

.swiperer-slide:hover {
    transform: scale(1.02);
}

/* Content inside each slide */
.testimonial-item {
    text-align: center;
}

.testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.testimonial-video iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: none;
}

/* Navigation buttons */
.swiper-button-prev,
.swiper-button-next {
    color: #333;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .swiperer-slide {
        flex: 0 1 100%; /* Single column on small screens */
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
        font-size: 14px;
        display: none !important;
    }
}
