/* ── Viewport: clips slides, no overflow in browser ── */
.orbisk-tsl-viewport {
    overflow: hidden;
}

/* ── Track: flex row of slides ── */
.orbisk-tsl-track {
    display: flex;
    transition: transform 0.4s ease;
}

/* ── Each slide module ── */
.orbisk_testimonial_slider_item {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}

.orbisk_testimonial_slider_item .et_pb_module_inner {
    padding: 0;
}

/* ── Slide inner layout: 3 columns ── */
.orbisk-tsl-slide {
    display: grid;
    grid-template-columns: 364px 1fr auto;
    gap: 48px;
    align-items: start;
    box-sizing: border-box;
}

/* ─────────────────────────────────────────
   IMAGE COLUMN
───────────────────────────────────────── */
.orbisk-tsl-image-col {
    position: relative;
    flex-shrink: 0;
}

.orbisk-tsl-main-image {
    display: block;
    width: 364px;
    height: 468px;
    object-fit: cover;
    border-radius: 8px;
}

.orbisk-tsl-image-placeholder {
    width: 364px;
    height: 468px;
    border-radius: 8px;
    background-color: #e9ede9;
}

/* ─────────────────────────────────────────
   CONTENT COLUMN
───────────────────────────────────────── */
.orbisk-tsl-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 468px;
    padding-right: 0;
}

.orbisk-tsl-testimonial {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: inherit;
    margin: 0;
    padding-bottom: 28px;
}

.orbisk-tsl-testimonial p {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.orbisk-tsl-person {
    margin-top: 0;
}

.orbisk-tsl-person-name {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: -4px;
}

.orbisk-tsl-person-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.orbisk-tsl-person-details {
    display: flex;
    flex-direction: column;
}

.orbisk-tsl-person-position,
.orbisk-tsl-business-name {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
}

.orbisk-tsl-business-logo {
    display: block;
    max-width: 70px;
    height: auto;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   STATS COLUMN
───────────────────────────────────────── */
.orbisk-tsl-stats-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    min-height: 468px;
    padding-left: 32px;
    border-left: 1px solid rgba(102, 102, 102, 0.2);
    box-sizing: border-box;
}

.orbisk-tsl-stat {
    display: flex;
    flex-direction: column;
}

.orbisk-tsl-stat-value {
    display: block;
    font-family: 'Agrandir', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    color: #13382A;
}

.orbisk-tsl-stat-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #13382A;
    margin-top: 4px;
}

.orbisk-tsl-stat-period {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
}

/* ─────────────────────────────────────────
   NAV ROW (indicators + arrows)
───────────────────────────────────────── */
.orbisk-tsl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

/* Indicators */
.orbisk-tsl-indicators {
    display: flex;
    align-items: center;
    gap: 21px;
}

.orbisk-tsl-indicator {
    display: block;
    height: 10px;
    width: 10.57px;
    border-radius: 3px;
    background-color: rgba(19, 56, 42, 0.1);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease;
    flex-shrink: 0;
}

.orbisk-tsl-indicator.is-active {
    width: 52.86px;
    background-color: #13382A;
}

/* Arrow buttons */
.orbisk-tsl-arrows {
    display: flex;
    gap: 12px;
}

.orbisk-tsl-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #ECF4EC;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.orbisk-tsl-arrow:hover {
    background-color: #004737;
}

.orbisk-tsl-arrow:hover svg path {
    stroke: #ffffff;
}

.orbisk-tsl-arrow--next svg {
    transform: scaleX(-1);
}

/* ─────────────────────────────────────────
   TABLET — hide image, 2-column layout
───────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 980px) {
    .orbisk-tsl-image-col {
        display: none;
    }

    .orbisk-tsl-slide {
        grid-template-columns: 1fr auto;
    }
}

/* ─────────────────────────────────────────
   MOBILE — stacked: image → stats → content
───────────────────────────────────────── */
@media (max-width: 767px) {
    .orbisk-tsl-slide {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .orbisk-tsl-image-col {
        order: 1;
    }

    .orbisk-tsl-stats-col {
        order: 2;
        border-left: none;
        border-top: 1px solid rgba(102, 102, 102, 0.2);
        padding-left: 0;
        padding-top: 24px;
        margin-bottom: 8px;
        min-height: unset;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .orbisk-tsl-stat {
        flex: 1 1 calc(50% - 8px);
        min-width: 100px;
    }

    .orbisk-tsl-content-col {
        order: 3;
        min-height: unset;
        justify-content: flex-start;
    }

    .orbisk-tsl-main-image {
        width: 100%;
        height: 416px;
        aspect-ratio: unset;
    }

    .orbisk-tsl-image-placeholder {
        width: 100%;
        height: 416px;
        aspect-ratio: unset;
    }

    .orbisk-tsl-stat-value {
        font-size: 36px;
    }
}
