/* Optional: Left-aligned mobile + visible submenus - matches your Whittier fix */
@media only screen and (max-width: 767px) {
  .themonic-nav li,
  .themonic-nav li a {
    text-align: left !important;
  }
  .themonic-nav ul ul {
    display: block !important;
    position: static !important;
    float: none !important;
    box-shadow: none !important;
    width: 100% !important;
    background: #e8e8e8 !important;
  }
  .themonic-nav ul ul li a {
    padding-left: 24px !important;
  }
}
/* Optional dark blue override - remove if you don't want it */
.themonic-nav ul.nav-menu,
.themonic-nav div.nav-menu > ul {
  border-bottom-color: #0A2A5A !important;
}
@media only screen and (min-width: 768px) {
  .themonic-nav ul.nav-menu,
  .themonic-nav div.nav-menu > ul {
    border-bottom: 5px solid #0A2A5A !important;
  }
}


/* FIX: Desktop hover text white - 2026-08-28 */
@media only screen and (min-width: 768px) {
  .themonic-nav ul.nav-menu > li > a:hover,
  .themonic-nav div.nav-menu > ul > li > a:hover,
  .themonic-nav ul.nav-menu > li:hover > a,
  .themonic-nav div.nav-menu > ul > li:hover > a,
  .themonic-nav li:hover > a {
    color: #fff !important;
    background: #0A2A5A !important;
  }
}
