.simple-breadcrumb {
    font-family: var(--font-secondary);
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.simple-breadcrumb .breadcrumb-item {
    color: #0075BB;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2em;
    letter-spacing: -0.1px;
    text-align: center;
}

.simple-breadcrumb a.breadcrumb-item:hover {
    color: #0075BB;
    text-decoration: underline;
}

.simple-breadcrumb .breadcrumb-item.current {
    color: #4E4E4E;
    font-weight: 500;
}

.simple-breadcrumb .breadcrumb-separator {
    line-height: 20px;
}

.simple-breadcrumb .breadcrumb-separator::before {
    background-color: #000000;
    width: 4px;
    height: 4px;
    border-radius: 50px;
    content: "";
    display: inline-block;
}