.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-top: 24px;
    margin-bottom: 32px;
    overflow-y: auto;
}

.breadcrumb__link {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.breadcrumb__link::after {
    content: '';
    display: block;
    background: url('../../../../assets/img/arr-right-gray.svg') center no-repeat;
    width: 18px;
    height: 18px;
}

.breadcrumb__text {
    font-family: var(--main-family);
    font-size: var(--p1-size);
    font-weight: 600;
    line-height: 18px;
    letter-spacing: -0.02em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--gray-1);
    white-space: nowrap;
}

.breadcrumb__text:hover,
.breadcrumb__text--active {
    color:  var(--gray-black);
}

.breadcrumb__text:hover {
    transition: .15s ease-out;
}

@media screen and (max-width: 769px) {
    .breadcrumb__list {
        margin-bottom: 16px;
    }
}
