/* =============================================
   Testimonials Slider — slider.css
   ============================================= */

/* Section wrapper */
.ts-section {
    width: 100%;
}

/* Section title */
.ts-section-title {
    text-align: center;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    color: inherit;
	margin: 0px !important;
}

/* Outer flex row: arrows + viewport */
.ts-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

/* Arrow buttons */
.ts-arrow {
	display:none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 8px;
    line-height: 1;
    transition: opacity .2s;
    outline: none;
}
.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;
    box-sizing: border-box;
}

/* Card */
.ts-card {
    background: #fff;
    border-radius: 30px;
    padding: 24px;
    border: 1px solid #DEDCDA;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow .25s;
}
.ts-card:hover { 
    border: 1px solid #3F0B39;
}

/* Card header — avatar + name */
.ts-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ts-avatar {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    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 {
     
}
/* 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: 12px;
    height: 12px;
    border-radius: 50%;
    background: #999;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .25s;
}
.ts-dot.ts-dot-active {
    background: var(--ts-accent, #f97316);
    transform: scale(1.25);
}

/* ─── 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; }
}
