/* positioning context for each row */
a:has(span[data-theme-menu-name="Core Alpha"]),
a:has(span[data-theme-menu-name="Cautious Alpha"]),
a:has(span[data-theme-menu-name="Conscious Alpha"]),
a:has(span[data-theme-menu-name="Structured Income"]),
a:has(span[data-theme-menu-name="Core Income"]),
a:has(span[data-theme-menu-name="Core income"]) {
  position: relative;
}

/* strips — always visible, 12px wide */
a:has(span[data-theme-menu-name="Core Alpha"])::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 12px;
  background-color: #325089;
}
a:has(span[data-theme-menu-name="Cautious Alpha"])::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 12px;
  background-color: #8B728E;
}
a:has(span[data-theme-menu-name="Conscious Alpha"])::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 12px;
  background-color: #950952;
}
a:has(span[data-theme-menu-name="Structured Income"])::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 12px;
  background-color: #F96F5D;
}
a:has(span[data-theme-menu-name="Core Income"])::after,
a:has(span[data-theme-menu-name="Core income"])::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 12px;
  background-color: #DEB43D;
}

/* text colour + bold — only on rollover */
a:hover span[data-theme-menu-name="Core Alpha"] { color: #325089 !important; font-weight: bold !important; }
a:hover span[data-theme-menu-name="Cautious Alpha"] { color: #8B728E !important; font-weight: bold !important; }
a:hover span[data-theme-menu-name="Conscious Alpha"] { color: #950952 !important; font-weight: bold !important; }
a:hover span[data-theme-menu-name="Structured Income"] { color: #F96F5D !important; font-weight: bold !important; }
a:hover span[data-theme-menu-name="Core Income"] { color: #DEB43D !important; font-weight: bold !important; }
a:hover span[data-theme-menu-name="Core income"] { color: #DEB43D !important; font-weight: bold !important; }


@media (min-width: 561px) {
  .theme-submenu-down-arrow,
  .theme-submenu-up-arrow,
  .theme-submenu-right-arrow {
    display: none !important;
  }
}