.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 300px;
}

.testimonial-content {
    text-align: center;
    padding: 20px;
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
}

.testimonial-text {
    font-weight: 400;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    margin-top: 10px;
}

/* Pagination dots */
.testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 15px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: white;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 8px;
    transition: opacity 0.3s ease;
    cursor: pointer !important;
    pointer-events: auto;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    opacity: 0.7;
}

.testimonial-prev svg,
.testimonial-next svg {
    width: 33px;
    height: 33px;
    display: block;
    pointer-events: none;
    cursor: pointer;
}

.testimonial-slider-editor {
    padding: 20px;
    text-align: center;
    background: #f5f5f5;
    border: 1px dashed #ccc;
}

/* Remove desktop media query that positions arrows on the sides */
/* We want the arrows to always be underneath the slider */ 