.section-breadcrumb {
    padding: 16px 0 24px 0;
}

.section-breadcrumb,
.section-breadcrumb p {
    color: rgba(40, 86, 119, 0.60);
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 2px;
}

.section-breadcrumb a {
    color: rgba(40, 86, 119, 0.60);
    font-weight: 600;
}

.section-breadcrumb .separator {
    width: 12px;
    height: 12px;
    background: url(../../images/icons/arrow-right-icon.svg);
    display: block;
    flex: 0 0 auto;
}

@media (max-width: 576px) {
    .section-breadcrumb {
        width: 100%;
        overflow: hidden;
        min-width: 0;
    }

    .section-breadcrumb nav {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
    }

    .section-breadcrumb nav p {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        flex-wrap: nowrap;
    }

    .section-breadcrumb nav p > a,
    .section-breadcrumb nav p > .separator {
        flex: 0 0 auto;
    }

    .section-breadcrumb .last {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: block;
    }
}