/**
 * IHSS Connect Widgets Styles
 */

.ihss-example-widget {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 4px;
}

.ihss-example-widget h2 {
    margin: 0;
    color: #333;
}

/**
 * Testimonial Slider Widget Styles
 */

.ihss-testimonial-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin-left: 40px;
    margin-right: 40px;
}

.ihss-testimonial-slider {
    position: relative;
    overflow: visible;
}

.ihss-testimonial-slider .swiper-wrapper {
    position: relative;
}

.ihss-testimonial-slider .swiper-slide {
    opacity: 0 !important;
    transition-property: opacity;
}

.ihss-testimonial-slider .swiper-slide-active {
    opacity: 1 !important;
}

.ihss-testimonial-card {
    position: relative;
    overflow: visible;
}

.ihss-testimonial-header {
    position: relative;
    margin-bottom: 20px;
    overflow: visible;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.ihss-testimonial-heading {
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.ihss-testimonial-quote {
    margin-top: -20px;
}

.ihss-icon-quote {
    display: block;
    max-width: 100%;
    height: auto;
}

.ihss-testimonial-content {
    position: relative;
    z-index: 2;
}

.ihss-testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.ihss-testimonial-author {
    font-size: 16px;
    font-style: normal;
    text-align: right;
}

/* Navigation Arrows */
.ihss-testimonial-arrow {
    width: 40px;
    height: 162px;
    background-color: #DEF2D2;
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ihss-testimonial-arrow:hover {
    opacity: 0.8;
}

.ihss-testimonial-prev {
    border-radius: 24px 0 0 24px;
    left: 0;
    transform: translate(-100%, -50%);
}

.ihss-testimonial-next {
    border-radius: 0 24px 24px 0;
    right: 0;
    transform: translate(100%, -50%);
}

.ihss-testimonial-arrow.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Pagination Dots */
.ihss-testimonial-card .swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: auto;
}

.ihss-testimonial-card .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.ihss-testimonial-card .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .ihss-testimonial-slider-wrapper {
        margin-left: 20px;
        margin-right: 20px;
    }
    .ihss-testimonial-next {
        border-radius: 0 10px 10px 0;
    }
    .ihss-testimonial-prev {
        border-radius: 10px 0  0 10px;
    }
    .ihss-testimonial-arrow {
        height: 80px !important;
        width: 25px !important;
    }

    .ihss-testimonial-text {
        font-size: 16px;
    }
}
