.ts-95e3cfea-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 20px;
}

.ts-95e3cfea-slider-track {
    display: flex;
    will-change: transform;
}

.ts-95e3cfea-slider-track.transitioning {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ts-95e3cfea-slide {
    flex: 0 0 calc(100% / var(--ts-95e3cfea-slides-to-show, 1));
    max-width: calc(100% / var(--ts-95e3cfea-slides-to-show, 1));
    box-sizing: border-box;
    padding: 10px;
}

.ts-95e3cfea-card {
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.ts-95e3cfea-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #f1f5f9;
}

.ts-95e3cfea-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ts-95e3cfea-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.ts-95e3cfea-feedback {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ts-95e3cfea-name {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 600;
}

.ts-95e3cfea-role {
    font-size: 14px;
    display: block;
}

/* Navigation */
.ts-95e3cfea-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.ts-95e3cfea-nav-btn {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #475569;
    transition: background 0.2s, color 0.2s;
}

.ts-95e3cfea-nav-btn:hover {
    background: #cbd5e1;
    color: #1e293b;
}

.ts-95e3cfea-dots {
    display: flex;
    gap: 8px;
}

.ts-95e3cfea-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.ts-95e3cfea-dot.active {
    background: #475569;
    transform: scale(1.2);
}
