
.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    line-height: 100%;
    font-size: var(--p-s-size);
    justify-content: center;
    color: var(--dark-blue);
    gap: 4px;
    padding-inline-start: 0;
}

.breadcrumbs li {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
}

.breadcrumbs li:not(:last-child):after {
    content: '>';
    margin: 0 .25rem;
    font-weight: 400;
}

.breadcrumbs-item:last-child {
    font-weight: 700;
}

