.fcm-usp {
    background-color: #0C6865;
    z-index: 2;
    position: relative;
}

.fcm-usp__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    max-width: 1340px;
    margin: 0 auto;
    padding: 25px 15px;
}

/* Divi wraps each child module in its own .et_pb_module/.et_pb_module_inner
   divs, so the real flex child inside .fcm-usp__track is the module's own
   slug class (.fcm_usp_bar_item), not .fcm-usp__item — size/border it here. */
.fcm-usp__track > .fcm_usp_bar_item {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 30px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fcm-usp__track > .fcm_usp_bar_item:last-child {
    padding-right: 0;
    border-right: none;
}

.fcm-usp__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fcm-usp__icon {
    display: flex;
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.fcm-usp__track > .fcm_usp_bar_item:hover .fcm-usp__icon {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.fcm-usp__icon i {
    font-size: 17.6px;
    line-height: 1;
    color: #FED55C !important;
}

.fcm-usp__icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.fcm-usp__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.fcm-usp__title {
    font-family: "Comfortaa", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.48em;
    color: #FFFFFF;
}

.fcm-usp__subtitle {
    font-family: "Comfortaa", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.48em;
    color: rgba(255, 255, 255, 0.5);
}

/* Auto-sliding carousel on smaller screens: swipeable + auto-advancing (see fcm-usp-bar.js), one item per view */
@media (max-width: 767px) {
    .fcm-usp {
        position: relative;
    }

    .fcm-usp__track {
        justify-content: flex-start;
        gap: 0;
        padding: 24px 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .fcm-usp__track::-webkit-scrollbar {
        display: none;
    }

    .fcm-usp__track > .fcm_usp_bar_item {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: center;
        border-right: none;
        padding: 0 !important;
    }

    .fcm-usp__item {
        justify-content: center;
    }

    .fcm-usp__subtitle {
        white-space: normal;
    }

    .fcm-usp__dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 0 0 16px;
    }

    .fcm-usp__dot {
        width: 6px;
        height: 6px;
        padding: 0;
        border: none;
        border-radius: 100px;
        background-color: rgba(255, 255, 255, 0.25);
        cursor: pointer;
        transition: width 0.2s ease, background-color 0.2s ease;
    }

    .fcm-usp__dot.is-active {
        width: 18px;
        background-color: #FED55C;
    }
}

@media (min-width: 768px) {
    .fcm-usp__dots {
        display: none;
    }
}

@media (max-width: 479px) {
    .fcm-usp__track {
        padding: 18px 20px;
    }

    .fcm-usp__title {
        font-size: 14px;
    }

    .fcm-usp__subtitle {
        font-size: 13px;
    }
}
