.ts-8cb-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px;
    font-family: inherit;
    background-color: var(--ts-bg-color, transparent);
    background-image: var(--ts-bg-image, none);
    background-size: var(--ts-bg-size, cover);
    background-position: var(--ts-bg-position, center center);
    background-repeat: var(--ts-bg-repeat, no-repeat);
    border-radius: 8px;
}
.ts-8cb-wrapper {
    position: relative;
    width: 100%;
    min-height: 180px;
}
.ts-8cb-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    transform: translateX(50px);
}
.ts-8cb-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.ts-8cb-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.ts-8cb-col {
    flex: 1;
    min-width: 280px;
}
.ts-8cb-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    padding: 10px;
}
.ts-8cb-photo-wrap {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #001f60;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 2px;
}
.ts-8cb-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.ts-8cb-content {
    flex-grow: 1;
}
.ts-8cb-feedback {
    margin: 0 0 15px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}
.ts-8cb-name {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #001f60;
}
.ts-8cb-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b1b1b1;
    display: block;
}
.ts-8cb-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}
.ts-8cb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}
.ts-8cb-dot.active {
    background: #001f60;
}
