.breadcrumbs {
    padding: 16px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

    .breadcrumbs__inner {
        width: var(--inner-width);
        display: flex;
        align-items: center;
        gap: 8px;
        overflow-x: auto;
    }

        .breadcrumbs__item {
            flex-shrink: 0;
            font-size: 13px;
            font-weight: 400;
            color: var(--font-2);
        }

        span.breadcrumbs__item {
            font-weight: 500;
            color: var(--font-1);
        }

        .breadcrumbs_sep {
            width: 16px;
            height: 16px;
            object-fit: contain;
            object-position: center;
        }