/* ====== Estilos breadcrumb CJEF ====== */
.cje-breadcrumb{
    --sep:"/";
    display:flex; align-items:center; flex-wrap:wrap; gap:10px;
    background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:10px 14px;
    box-shadow:0 4px 14px rgba(0,0,0,.06); margin:12px auto; max-width:1200px;
  }
  .cje-breadcrumb a{ color:#6b0023; text-decoration:none; font-weight:600; }
  .cje-breadcrumb a:hover{ text-decoration:underline; }
  .cje-breadcrumb .sep{ color:#9ca3af; }
  .cje-breadcrumb .current{ color:#6b7280; font-weight:700; }
  .cje-breadcrumb .chip{
    font-size:12px; background:rgba(179,139,0,.08); color:#b38b00;
    border:1px solid rgba(179,139,0,.35); padding:2px 6px;
    border-radius:999px; margin-left:6px;
  }
  /* Opcional: sticky debajo del banner en páginas largas */
  .cje-breadcrumb.sticky{
    position:sticky; top:0; z-index:30;
    border-radius:0; border-left:none; border-right:none;
  }
  