/* === Breadcrumbs base === */
.breadcrumbs {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    color: #444;
    background: white;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    
}

/* Enlaces */
.breadcrumbs a {
    color: #4e73df;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #1b48b2;
}

/* Separador */
.breadcrumbs a::after {
    content: "";
    color: #999;
    margin: 0 8px;
    font-weight: bold;
}

.breadcrumbs span {
    color: #222;
    font-weight: 500;
    margin: 0 8px;
}

/* Quitar separador después del último enlace */
.breadcrumbs a:last-of-type::after {
    content: "";
}

/* === Responsividad === */
@media (max-width: 600px) {
    .breadcrumbs {
        font-size: 0.85rem;
        padding: 8px 12px;
        border-radius: 6px;
    }

    .breadcrumbs a::after {
        margin: 0 6px;
    }
}