.breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    padding-block: 1rem;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.breadcrumb-sep {
    flex-shrink: 0;
}

.breadcrumb a,
.breadcrumb span,
.breadcrumb svg { display: block; }

.breadcrumb-item {
    font-size: 0.75rem;
    line-height: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.breadcrumb-item:first-child {
    flex-shrink: 0;
}

.breadcrumb-item:not(:first-child) {
    flex-shrink: 1;
}

.breadcrumb-item a,
.breadcrumb-item > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb li:first-child svg {
    width: 14px;
    height: 14px;
}

@media ( max-width: 1099px ) {
    .breadcrumb {
        gap: 0.5rem;
        padding-block: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .breadcrumb li:first-child svg {
        width: 15px;
        height: 16px;
    }

    .intro-banner + nav .breadcrumb { margin-top: 0.5rem; }
}
