/*
GPRO CSS: Menu Scrollspy
Description: Highlights the in-page anchor link matching the section currently in view within a horizontal scroll menu. Pairs with the Menu Scrollspy JS module and requires the Horizontal Scroll Menu CSS/JS modules on the same menu.
Classes: .gpro-horizontal-scroll-menu.menu-scrollspy
Apply: Add .menu-scrollspy alongside .gpro-horizontal-scroll-menu as a CSS Class on a Divi Menu module (Advanced → CSS Class). Menu links must be in-page anchors (href="#section-id") matching real section IDs on the page.
Tokens: --gpro-scrollspy-active = spy-menu active-link color, falls back to --color-link-active if unset
Version: 1.1
Order: 20
*/

.gpro-horizontal-scroll-menu.menu-scrollspy a.is-active {
    color: var(--gpro-scrollspy-active, var(--color-link-active));
}
