/* Stats Bar Section - ff3f71f1 */

/* Wrapper */
.sbs-ff3f71f1-wrapper {
    box-sizing: border-box;
    width: 100%;
    position: relative;
}

/* ========================
   Desktop: flex row
   ======================== */
.sbs-ff3f71f1-desktop-view {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100%;
}

.sbs-ff3f71f1-mobile-view {
    display: none !important;
}

/* Card base */
.sbs-ff3f71f1-card {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-width: 0;
}

.sbs-ff3f71f1-heading {
    margin: 0;
    padding: 0;
    width: 100%;
}

.sbs-ff3f71f1-label {
    margin: 0;
    padding: 0;
    width: 100%;
}

.sbs-ff3f71f1-label p {
    margin: 0;
    padding: 0;
}

/* Divider styles */
.sbs-ff3f71f1-dividers .sbs-ff3f71f1-card + .sbs-ff3f71f1-card {
    border-left-style: solid;
}

/* ========================
   Mobile: native scroll
   ======================== */
@media screen and (max-width: 767px) {
    .sbs-ff3f71f1-desktop-view {
        display: none !important;
    }

    .sbs-ff3f71f1-mobile-view {
        display: block !important;
    }

    .sbs-ff3f71f1-scroll-track {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    .sbs-ff3f71f1-scroll-track::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .sbs-ff3f71f1-scroll-track .sbs-ff3f71f1-card {
        flex: none;
        scroll-snap-align: start;
    }
}

/* Pagination dots */
.sbs-ff3f71f1-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
}

.sbs-ff3f71f1-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sbs-ff3f71f1-dot-active {
    transform: scale(1.25);
}
