/* Base breadcrumb (déjà en place) – on l'affine */
.edv-breadcrumb{ font-size:.9rem; color:var(--muted); }
.edv-bc{
    display:flex; flex-wrap:wrap; align-items:center;
    gap:.35rem .5rem; padding:.3rem .5rem;
    border-radius:999px; background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08); backdrop-filter:blur(6px);
}
.edv-crumb{ display:flex; align-items:center; gap:.35rem; }
.edv-sep{ width:14px; height:14px; opacity:.35; transform:translateY(1px); }

.edv-breadcrumb a{ color:inherit; text-decoration:none; padding:.25rem .55rem; border-radius:.55rem; }
.edv-breadcrumb a:hover{ background:rgba(255,255,255,.08); color:#fff; }
.edv-current{ opacity:.9; color:#e5e7eb;
    /*padding:.25rem .55rem;*/
    border-radius:.55rem; }

/* La “pill” (catégorie) seulement si demandée */
.edv-pill{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
}

/* Variante GHOST (plus de bulle globale) */
.edv-bc--ghost{
    background:transparent; border:0; padding:0;
}

/* Mobile : tronquer le titre */
@media (max-width: 520px){
    .edv-current{ max-width:62vw; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
}
/* Kill any legacy separators */
.edv-crumb::before,
.edv-crumb::after{ content:none !important; }
