nav {
    ol.breadcrumb {
        li, a {
            font-family: 'ClashGrotesk-Light';
            text-transform: uppercase;
            color: var(--bs-noir-carbone);
            text-decoration: none;
            display: flex;
            justify-content: flex-start;
            flex-direction: row;
            align-items: center;
        }

        li.breadcrumb-item::before {
            display: inline-block;
            width: 14px;
            height: 14px;
            line-height: 14px;
            background-color: var(--bs-vert-mousse);
            content: '\f061';
            font-family: "Font Awesome 7 Free";
            color: var(--bs-gris-vert);
            font-size: 0.5rem; 
            text-align: center;
            vertical-align: middle;
            text-decoration: none;
            padding: 0;
            margin-right: var(--bs-breadcrumb-item-padding-x);
        }

        li.breadcrumb-item:first-of-type::before {
            display: none;
        }

        li.breadcrumb-item.active {
            font-family: 'ClashGrotesk-Medium';
        }
    }
} 