.page-breadcrumb-section {
    width: 100%;
    background: #ffffff;
    padding: 14px 0 9px;
    border-bottom: 1px solid #edf0f3;
}

.page-breadcrumb {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: #8a97a8;
}

.page-breadcrumb-parent {
    color: #8a97a8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-breadcrumb-parent:hover {
    color: #143d6b;
}

.page-breadcrumb-separator {
    color: #b3bcc8;
}

.page-breadcrumb-current {
    color: #155079;
    font-weight: 700;
}

@media (max-width: 767px) {
    .page-breadcrumb-section {
        padding: 12px 0 8px;
        border-bottom: 1px solid #edf0f3;
    }

    .page-breadcrumb {
        font-size: 11px;
        gap: 6px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .page-breadcrumb::-webkit-scrollbar {
        display: none;
    }
}
