/* AISLAR de estilos Divi */
.sb-breadcrumbs,
.sb-breadcrumbs * {
    line-height: normal !important;
}

/* Contenedor */
.sb-breadcrumbs {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    gap: 6px;
}

/* Items */
.sb-item,
.sb-sep {
    display: inline-flex;
    align-items: center;
}

/* TEXTO (clave de todo) */
.sb-text {
    position: relative;
    top: -1px; /* ← sube el texto */
    display: inline-block;
}

/* Enlaces */
.sb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0051A8;
    font-weight: 500;
    text-decoration: none;
}

.sb-link:hover {
    text-decoration: underline;
}

/* Texto actual */
.sb-item-current .sb-text {
    color: #F54927;
    font-weight: 600;
}

/* Iconos */
.sb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Home */
.sb-icon-home {
    width: 16px;
    height: 16px;
}

/* Separador */
.sb-icon-sep {
    width: 12px;
    height: 12px;
    opacity: 0.8;
}

