/* Keep long breadcrumb chains on a single horizontally scrollable line. */
.breadcrumbs {
    min-width: 0;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding-bottom: 4px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.breadcrumbs ul::-webkit-scrollbar {
    display: none;
}

.breadcrumbs ul li {
    flex: 0 0 auto;
}
