.breadcrumb-nav {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    font-family: 'Segoe UI', sans-serif;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0.6); 
    font-weight: 500;
}

.breadcrumb li:not(:last-child)::after {
    content: "\203A";
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    color: rgba(0, 0, 0, 0.3); 
}

.breadcrumb a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.breadcrumb .current {
    color: #000;
    font-weight: 600;
    opacity: 1;
    pointer-events: none;
}
