.wintemp-testimonial-splide-wrapper {
    position: relative;
    padding: 44px;
    background-color: #f6f6f6;
    border-radius: 38px;
}

.testimonial-quote-icon {
    display: inline-block;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 80px;
    padding-right: 80px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: bold;
    font-size: 0.88rem;
    margin: 0;
}

.testimonial-title {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.8;
}

/* Custom Arrows Position */
.wintemp-custom-arrows {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Splide overrides for custom arrows if placed inside/outside differently */
.splide__arrows.wintemp-custom-arrows {
    position: static; /* Reset absolute positioning */
    transform: none;
    margin-left: auto; /* Push to right if in flex container */
}

/* Ensure footer and arrows align if needed, but per design arrows are separate */
.testimonial-footer {
    position: relative;
}

/* Move arrows to the bottom right of the container */
.wintemp-testimonial-splide-wrapper .splide__arrows {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.splide__arrow {
    position: static; /* Reset default Splide absolute positioning */
    transform: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.splide__arrow svg {
    width: 20px;
    height: 20px;
    transition: fill 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wintemp-testimonial-splide-wrapper .splide__arrows {
        position: relative;
        justify-content: flex-end;
        margin-top: 20px;
    }
    .wintemp-testimonial-splide-wrapper {
        padding: 20px;
        border-radius: 19px;
    }
    .testimonial-content {
        margin-bottom: 0;
        padding-right: 0;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .testimonial-avatar img {
        width: 29px;
        height: 29px;
    }
    .wintemp-testimonial-splide-wrapper .splide__arrows {
        gap: 6px;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .wintemp-testimonial-splide-wrapper .splide__arrows .splide__arrow {
        width: 24px;
        height: 24px;
        padding: 0;
    }
    .wintemp-testimonial-splide-wrapper .splide__arrows .splide__arrow svg {
        width: 8px;
        height: 12px;
    }
}
