/**
 * WS Booster - Widget Fil d'Ariane
 */

.ws-bc {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
}

.ws-bc--views-below {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.ws-bc--views-right {
    justify-content: space-between;
}

.ws-bc__trail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 0;
}

.ws-bc__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ws-bc__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #0f172a;
    transition: color 0.2s ease;
}

.ws-bc__link:hover {
    color: #6366f1;
}

.ws-bc__home-icon,
.ws-bc__views-icon {
    display: inline-flex;
    align-items: center;
}

.ws-bc__home-icon svg,
.ws-bc__views-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.ws-bc__sep {
    display: inline-flex;
    align-items: center;
    color: #cbd5e1;
    font-size: 0.9em;
    user-select: none;
}

.ws-bc__sep svg {
    width: 14px;
    height: 14px;
}

.ws-bc__current {
    color: #0f172a;
    font-weight: 600;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Compteur de vues */
.ws-bc__views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.4;
}

.ws-bc__views-icon svg {
    width: 14px;
    height: 14px;
}

.ws-bc__views-count {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.ws-bc__views-label {
    opacity: 0.85;
}

.ws-bc--views-inline .ws-bc__views {
    margin-left: 16px;
}

.ws-bc--views-below .ws-bc__views {
    margin-left: 0;
}

@media (max-width: 600px) {
    .ws-bc__current {
        max-width: 200px;
    }
    .ws-bc {
        font-size: 13px;
    }
}
