.breadcrumb-bar {
    background: #e9f2f6;
    /* Light blue-grey */
    border-bottom: 1px solid #ccd7de;
}

.breadcrumb-bar .breadcrumb {
    font-size: 1rem;
    color: #4690b5;
}

.breadcrumb-bar .breadcrumb-item+.breadcrumb-item::before {
    color: #b0b8be;
    /* muted chevron */
}

.breadcrumb-bar .breadcrumb-item a {
    color: #4690b5;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-bar .breadcrumb-item a:hover {
    color: #315e7d;
    text-decoration: underline;
}

.breadcrumb-bar .breadcrumb-item.active {
    color: #223144;
    font-weight: 600;
}

.breadcrumb-bar .breadcrumb-links a {
    color: #223144;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}

.breadcrumb-bar .breadcrumb-links a:hover {
    color: #4690b5;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .breadcrumb-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .breadcrumb-bar .breadcrumb-links {
        gap: 1rem;
    }
}