.pwpps-breadcrumb {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    min-height: 52px;
    padding: 16px 120px;
    background: #FFFFFF;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.pwpps-breadcrumb__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pwpps-breadcrumb__item {
    display: flex;
    align-items: center;
    padding: 2px 0;
    font-size: var(--font-size-13);
    line-height: 16px;
}

.pwpps-breadcrumb__link {
    color: #8C8C8C;
    font-weight: var(--font-weight-label);
    font-size: var(--font-size-13);
    line-height: 16px;
    text-decoration: none;
}

.pwpps-breadcrumb__separator {
    list-style: none;
    color: #8C8C8C;
    font-size: var(--font-size-12);
    line-height: 15px;
    padding: 0 4px;
    display: flex;
    align-items: center;
}

.pwpps-breadcrumb__current {
    color: #141414;
    font-weight: var(--font-weight-label);
    font-size: var(--font-size-13);
    line-height: 16px;
}

@media (max-width: 1023px) {
    .pwpps-breadcrumb {
        padding: 16px;
        gap: 12px;
    }

    .pwpps-breadcrumb__current {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }
}
