.swiper{
    padding:60px 0;
}

/* default slide blur */
.swiper-slide{
    width:350px;
    filter: blur(3px);
    opacity:0.5;
    transform:scale(0.9);
    transition:all .4s ease;
}

/* active slide clear */
.swiper-slide-active{
    filter:blur(0);
    opacity:1;
    transform:scale(1.05);
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right{
    display:none;
}
.swiper-slide-active .glass-card{
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    transform:translateY(-5px);
}
.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.testimonial-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.testimonial-text{
    font-size:16px;
    line-height:1.8;
    color:var(--text-muted);
    text-align:justify;
    text-wrap:pretty;
    word-break:break-word;
    flex-grow:1;
}

.testimonial-footer{
    margin-top:auto;
    text-align:center;
}

.testimonial-name{
    font-weight:600;
    margin-bottom:2px;
}

.testimonial-role{
    font-size:14px;
    color:var(--text-muted);
}

.testimonial-text .quote{
    font-size:22px;
    font-weight:600;
    color:var(--primary-color);
}

