.cts-slider-wrap {
    position: relative;
    max-width: 800px;
    margin: 0px auto;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cts-slider-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.cts-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 30px;
}

.cts-slide-content {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 10px -8px 0px var( --e-global-color-0d626c2 );

    /* Quotation SVG background */
    background-image: url(../img/quotation.svg);
    background-repeat: no-repeat;
    background-size: 55px;
    background-position: top 20px right 20px;
}

.cts-nav-prev, .cts-nav-next {
    cursor: pointer;
}

/* === New two-column layout === */

.cts-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cts-avatar-col {
    flex: 0 0 140px;
    display: flex;
    justify-content: center;
}

.cts-avatar-col .cts-avatar {
    /* border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover; */
}

.cts-content-col {
    flex: 1;
}

/* === Text hierarchy === */

.quotationMark {
    position: absolute;
    right: 55px;
}

.cts-name {
    font-weight: 700;
    font-size: 20px;
    color: var( --e-global-color-1d79643 );
}

.cts-role {
    font-size: 14px;
    color: #666;
}

.cts-rating {
    /* margin-bottom: 10px; */
}

.cts-star {
    font-size: 16px;
    margin-right: 2px;
}

.cts-star-filled {
    color: #ffb400;
}

.cts-star-empty {
    color: #ddd;
}

.cts-quote-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* === Navigation & dots === */

.cts-nav {
    visibility: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.cts-nav:hover {
    background: rgba(0,0,0,0.15);
}

.cts-prev {
    left: 10px;
}

.cts-next {
    right: 10px;
}

.cts-dots {
    /* display: flex; */
    display: none;
    justify-content: center;
    margin-top: 15px;
    gap: 6px;
}

.cts-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ddd;
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
    border: none;
    padding: 0;
}

.cts-dot.cts-dot-active {
    background: #111827;
    width: 18px;
}

.cts-no-testimonials {
    text-align: center;
    font-style: italic;
    color: #777;
}

/* === Responsive === */

@media (max-width: 600px) {
    .cts-slide {
        padding: 20px;
    }

    .cts-slide-content {
        padding: 18px 16px;
        background-image: none;
    }

    .cts-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cts-avatar-col {
        flex: 0 0 auto;
        margin-bottom: 10px;
    }

    .cts-content-col {
        width: 100%;
    }

    .cts-name,
    .cts-role,
    .cts-quote-text {
        text-align: center;
    }
}
