/* ============================================================
   CF Widget — Breadcrumbs
   ============================================================ */

.cw-breadcrumb {
    padding: 14px 0;
}

.cw-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    font-family: inherit;
}

.cw-breadcrumb__item {
    display: flex;
    align-items: center;
}

.cw-breadcrumb__link {
    color: #666666;
    text-decoration: none;
    transition: color 200ms ease;
    cursor: pointer;
}

.cw-breadcrumb__link:hover,
.cw-breadcrumb__link:focus {
    color: #C9A96E;
    text-decoration: none;
}

.cw-breadcrumb__separator {
    color: #999999;
    margin: 0 8px;
    user-select: none;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Cualquier SVG (default o subido) hereda color via currentColor.
   No forzamos fill/stroke desde CSS para no sobrescribir iconos
   outline (fill="none"). El SVG controla sus propios atributos
   fill/stroke; ya están normalizados a currentColor en PHP. */
.cw-breadcrumb__separator svg {
    width: 14px;
    height: 14px;
    display: block;
    color: inherit;
}

/* Iconos de librería (FontAwesome) */
.cw-breadcrumb__separator i {
    line-height: 1;
}

.cw-breadcrumb__current {
    color: #1a1a1a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cw-breadcrumb__item--current .cw-breadcrumb__current {
        max-width: 300px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        vertical-align: bottom;
    }
}
