/**
 * Endospheres Testimonial Slider Styles
 * File: endospheres-testimonial.css
 */

.endospheres-testimonial-slider-container {
    width: calc( 100% - 60px );
    position: relative;
    margin: 0 auto;
}

.endospheres-testimonial-slider-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.endospheres-testimonial-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.endospheres-testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 48px 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
    min-width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin: 10px;
}

.endospheres-testimonial-content {
    flex: 1;
}

.endospheres-testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0;
}

.endospheres-testimonial-author-info {
    text-align: left;
    min-width: 200px;
}

.endospheres-testimonial-author-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.endospheres-testimonial-author-location {
    font-size: 14px;
    color: #666;
}

.endospheres-testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.endospheres-testimonial-nav-btn:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.endospheres-testimonial-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.endospheres-testimonial-nav-btn.prev {
    left: -45px;
}

.endospheres-testimonial-nav-btn.next {
    right: -45px;
}

.endospheres-testimonial-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: #667eea;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .endospheres-testimonial-card {
        flex-direction: column;
        text-align: left;
        padding: 32px 24px;
    }

    .endospheres-testimonial-nav-btn.prev {
        left: -40px;
    }

    .endospheres-testimonial-nav-btn.next {
        right: -40px;
    }

    .custom-icon-list.elementor-widget .elementor-icon-list-item {
        display: block;
    }

    .custom-icon-list.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text {
        padding-inline-start: 0;
    }
    .custom-icon-list.elementor-widget .elementor-icon-list-icon {
        margin-bottom: 20px
    }
}