.breadcrumbs-section {
    background: rgba(252, 245, 252, 1);
    padding: 24px 0;
    margin-top: -25px;
    margin-bottom: 0 !important;
}

.breadcrumbs__list {
    margin: 0 10px;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumbs__item {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
}

.breadcrumbs__item {
    color: rgba(142, 70, 143, 1);
}

.breadcrumbs__item:last-child {
    color: rgba(92, 7, 94, 1);
}

.breadcrumbs__item:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: rgba(142, 70, 143, 1);
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}

.breadcrumbs__link {
    text-decoration: none;
    color: inherit;
    transition: color .25s ease;
}

.breadcrumbs__link:hover {
    color: rgba(92, 7, 94, 1);
}

/* Мобильная кнопка "назад" */
.breadcrumbs-section__back {
    display: none;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #5C075E;
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 15px;
    transition: opacity 0.2s ease;
}

.breadcrumbs-section__back:hover {
    opacity: 0.7;
}

.breadcrumbs-section__back-icon {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .breadcrumbs-section {
        padding: 0;
        padding-top: 24px;
    }

    .breadcrumbs__item {
        font-size: 11px;
        line-height: 15px;
    }

    .breadcrumbs__item:not(:last-child)::after {
        font-size: 11px;
        line-height: 15px;
        margin: 0 6px;
    }
}

@media (max-width: 576px) {
    .breadcrumbs-section {
        padding: 0;
        padding-top: 24px;
    }

    .breadcrumbs-section__desktop {
        display: none;
    }

    .breadcrumbs-section__back {
        display: flex;
    }
}
