/* Scoped tweaks: remove bullets and subnav divider lines */
.menu[data-scoped-menu] .menu-list,
.menu[data-scoped-menu] .menu-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.menu[data-scoped-menu] .menu-list li {
    border: none;
    box-shadow: none;
}

.menu[data-scoped-menu] .menu-list ul {
    border: none;
    padding-left: 1rem;
    margin-top: .25rem;
}

.menu[data-scoped-menu] .menu-list a {
    display: inline-block;
    padding: .3rem 0;
    text-decoration: none;
}

/* Unified active state for final child and ancestor nodes */
.menu[data-scoped-menu] .menu-list a.is-active,
.menu[data-scoped-menu] .menu-list a[aria-current="page"],
.menu[data-scoped-menu] .menu-list li.is-active>a {
    color: #3273dc;
    font-weight: 600;
    background: transparent;
}

/* subtle highlight for the deepest child only */
.menu[data-scoped-menu] .menu-list a.is-active[aria-current="page"] {
    background-color: rgba(50, 115, 220, 0.06);
    border-radius: 4px;
    padding-left: .25rem;
}