.ts-b203953a-wrapper {
    position: relative;
    width: 100%;
/*     --ts-b203953a-cols: 3; */
    --ts-b203953a-gap: 20px;
}

.ts-b203953a-track-container {
    overflow: hidden; /* Default, overridden via Elementor control if selected */
    width: 100%;
}

.ts-b203953a-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

.ts-b203953a-slide {
    flex: 0 0 calc((100% - (var(--ts-b203953a-gap) * (var(--ts-b203953a-cols) - 1))) / var(--ts-b203953a-cols));
    margin-right: var(--ts-b203953a-gap);
    box-sizing: border-box;
    transition: opacity 0.3s ease-in-out; /* Smooth opacity transition */
}

.ts-b203953a-slide:last-child {
    margin-right: 0;
}

.ts-b203953a-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.ts-b203953a-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.ts-b203953a-rating svg {
    fill: #facc15;
}

.ts-b203953a-feedback {
    font-size: 16px;
    line-height: 1.5;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.ts-b203953a-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ts-b203953a-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.ts-b203953a-name {
    font-weight: 600;
    font-size: 16px;
    color: #111827;
}

.ts-b203953a-designation {
    font-size: 14px;
    color: #6b7280;
}

/* Nav */
.ts-b203953a-nav-arrows {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.ts-b203953a-arrow {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    pointer-events: auto;
    color: #111827;
}

.ts-b203953a-arrow svg {
    fill: currentColor;
}

.ts-b203953a-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.ts-b203953a-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e5e7eb;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ts-b203953a-dot.is-active {
    background-color: #111827;
}