/* =============================================
   Testimonials Slider — slider.css
   ============================================= */
.ts-wrapper {
    position: relative;
}
/* Arrow buttons */
.ts-arrow {
    background: transparent !important;
    border: none;
    font-size: 30px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    transition: opacity .2s;
    outline: none;
    box-shadow: none;
    color: #505251 !important;
    position: absolute;
    top: 44%;
}
button.ts-arrow.ts-next {
    right: -35px;
}
button.ts-arrow.ts-prev {
    left: -35px;
}
.ts-arrow:hover  { opacity: .7; }
.ts-arrow:focus-visible { outline: 2px solid currentColor; border-radius: 4px; }

/* Viewport — clips overflow */
.ts-slider-viewport {
    flex: 1;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}
.ts-slider-viewport:active { cursor: grabbing; }

/* Track — flex row of slides */
.ts-track {
    display: flex;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}

/* Individual slide */
.ts-slide {
    flex-shrink: 0;
    padding: 10px 10px;
    box-sizing: border-box;
}

/* Card */
.ts-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 3.5px 13.12px 0px #00000033;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow .25s;
}
.ts-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.13); }

/* Card header — avatar + name */
.ts-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ts-avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 100% !important;
    object-fit: cover;
    flex-shrink: 0;
}
.ts-avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.ts-name-wrap {
    display: flex;
    flex-direction: column;
}

.ts-name {
    font-weight: 700;
    font-size: 1em;
    line-height: 1.3;
}

.ts-role {
    font-size: .85em;
    opacity: .65;
    margin-top: 2px;
}

/* Stars */
.ts-stars { display: flex; gap: 3px; }
.ts-star { font-size: 20px; color: #ddd; }
.ts-star-filled { color: #f97316; }

/* Quote marks */
.ts-quote-mark {
    font-size: 28px;
    line-height: 1;
    opacity: .25;
    color: inherit;
    font-family: Georgia, serif;
}
.ts-quote-open  { align-self: flex-start; margin-bottom: -6px; }
.ts-quote-close { align-self: flex-end;   margin-top: -6px; }

/* Testimonial body text */
.ts-content { line-height: 1.65; }
.ts-content p:first-child { margin-top: 0; }
.ts-content p:last-child  { margin-bottom: 0; }

/* Dots */
.ts-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.ts-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #505251;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .25s;
}
.ts-dot.ts-dot-active {
    background: var(--ts-accent, #f97316);
}

/* ─── Responsive slide widths ─── */
/* Mobile: 1 slide = 100% */
.ts-slide { width: 100%; }

@media (min-width: 768px) {
    /* Tablet width set via JS */
}
@media (min-width: 1024px) {
    /* Desktop width set via JS */
}

/* Prevent text selection while dragging */
.ts-track.ts-dragging { transition: none; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .ts-track { transition: none; }
}
@media(max-width:500px){
	.ts-arrow {
    font-size: 20px;
}
button.ts-arrow.ts-next {
    right: -28px;
}
button.ts-arrow.ts-prev {
    left: -28px;
}	
}