/* Breadcrumb — global template styles */
.breadcrumb-wrapper {
    background: #fff;
    padding: 12px 0;
}

/* Neutralise Bootstrap 5 reboot qui stylise les <ol> avec numéros et padding */
.breadcrumb-wrapper .crumbs {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 14px;
    color: #666;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.breadcrumb-wrapper .crumbs li {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    list-style: none !important;
}

/* Supprime la numérotation automatique Bootstrap sur les li */
.breadcrumb-wrapper .crumbs li::before,
.breadcrumb-wrapper .crumbs li::marker {
    content: none !important;
    display: none !important;
}

.breadcrumb-wrapper .crumbs a {
    color: var(--bbx-locales-primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-wrapper .crumbs a:hover {
    text-decoration: underline;
}

.breadcrumb-wrapper .crumbs .sep {
    color: #999;
    margin: 0 2px;
    user-select: none;
}

.breadcrumb-wrapper .crumbs .current {
    color: #333;
    font-weight: 600;
}
/* /Breadcrumb */
