.sxs-bcrm {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: $text-13;

    &__ite {
        &:not(:first-child) {
            padding-left: $spacing3;

            &::before {
                content: "/";
                padding-right: $spacing3;
                font-weight: 400;
            }
        }

        &:last-child {
            font-weight: 600;
        }

        a:hover {
            text-decoration: underline;
        }
    }

    @include xxxl-wmin {
        font-size: $text-body;
    }
}