.breadcrumb-custom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 0;
    font-size: var(--people-font-size-md);
}

.breadcrumb-custom__item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-custom__icon {
    color: var(--people-color-orange);
    width: 15px;
    height: 15px;
    display: block;
}

.breadcrumb-custom__item a {
    color: var(--people-color-orange);
    text-decoration: none;
}

.breadcrumb-custom__item a,
.breadcrumb-custom__item span:not(.breadcrumb-custom__separator) {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb-custom__item a:hover {
    text-decoration: none;
}

.breadcrumb-custom__item--active {
    color: var(--people-text-color) !important;
    font-weight: bold;
}