.breadcrumb-keyloc {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-keyloc ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-keyloc li {
    display: flex;
    align-items: center;
    color: #6b7280; /* gris pro */
}

.breadcrumb-keyloc li:not(:last-child)::after {
    content: "›";
    margin: 0 6px;
    color: #cbd5e1;
}

.breadcrumb-keyloc a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #2563eb; /* bleu SaaS */
    transition: color 0.2s ease;
}

.breadcrumb-keyloc a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.breadcrumb-keyloc svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.breadcrumb-keyloc li[aria-current="page"] {
    color: #111827;
    font-weight: 600;
}


@media (max-width: 600px) 
{
    .navbar .navbar-brand img 
    {
        width: 100%;
        height: auto;
        max-width: 230px;
    }
}