/**
 * REF SEO - Breadcrumbs Styles
 * Espelhamento de estilo entre Single e Archive
 * @version 1.0.0
 */

/* Container Principal */
.ref-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px; /* Espaço entre itens */
    font-size: 14px;
    font-family: inherit; /* Herda do tema */
    color: #666;
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Links (Itens navegáveis) */
.ref-breadcrumbs__item {
    color: var(--ref-primary, #2c3e50);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ref-breadcrumbs__item:hover {
    color: var(--ref-accent, #3498db);
    text-decoration: underline;
}

/* Separador (Seta ») */
.ref-breadcrumbs__sep {
    color: #ccc;
    font-size: 12px;
    margin: 0 2px;
}

/* Item Atual (Último item - Texto) */
.ref-breadcrumbs__current {
    color: #999;
    font-weight: 400;
    pointer-events: none;
}
