.anchormenu--section {
    background-color: var(--theme-off-white);;
}

.anchormenu--container {
    padding: 20px 0;
}

.anchormenu--list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px 24px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 992px) {
    .anchormenu--section {
        position: sticky;
        top: var(--theme-menu-height);
        z-index: 3;
    }

    body.admin-bar .anchormenu--section {
        top: calc(var(--theme-menu-height) + 32px);
    }

    body:not(.wp-admin) [id] {
	    scroll-margin-top: calc(var(--theme-menu-height) + 68px); /* adding secondary menu height */
    }
    
}