.ts-inner {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
}

/* ── Animated circle decoration ── */

.ts-anim-wrap {
    position: absolute;
    top: 0;
    right: -10%;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 0;
}

.ts-anim-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

/* ── Left panel ── */

.ts-panel {
    background-color: #101D49;
    border: 1px solid rgba(204, 204, 204, 0.8);
    box-shadow: 0px 2px 4px 0px rgba(96, 97, 112, 0.16), 0px 0px 1px 0px rgba(40, 41, 61, 0.04);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.ts-heading {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.2;
    color: #FBFAFA;
    margin: 0;
}

.ts-body {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #FBFAFA;
    margin: 0;
}

/* ── Dot navigation ── */

.ts-dots {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.testimonial-slider-block .ts-dot {
    width: 8px !important;
    height: 8px !important;
    min-height: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 200ms ease, transform 200ms ease;
}

.testimonial-slider-block .ts-dot:hover {
    background: rgba(255, 255, 255, 0.5) !important;
}

.testimonial-slider-block .ts-dot.is-active {
    background: #62B9CC !important;
}

.testimonial-slider-block .ts-play-pause {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: none !important;
    border-radius: 4px;
    color: #FBFAFA;
    cursor: pointer;
    padding: 0 !important;
    flex-shrink: 0;
    transition: background 200ms ease;
}

.testimonial-slider-block .ts-play-pause:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* ── Right card ── */

.ts-card {
    background-color: #F6F5F5;
    border: 1px solid rgba(204, 204, 204, 0.8);
    box-shadow: 0px 2px 4px 0px rgba(96, 97, 112, 0.16), 0px 0px 1px 0px rgba(40, 41, 61, 0.04);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ts-slide {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.ts-quote {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    color: #005EAD;
    margin: 0;
    padding: 0;
    border: none;
    font-style: normal;
    background: none;
}

.ts-attribution {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-height: 48px;
}

.ts-headshot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ts-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
}

/* ── Mobile ── */

@media (max-width: 768px) {
    .testimonial-slider-block {
        padding: 60px 0;
    }

    .ts-inner {
        flex-direction: column;
        gap: 0;
    }

    .ts-panel {
        width: 100%;
    }

    .ts-heading {
        font-size: 26px;
    }
}
