/* --- MRV FIX: mobile nav + footer links 2026-07-08 --- */

/* Mobile drawer: dark text on white panel (beats transparent-header white nav) */
@media (max-width: 768px) {
  .site-header:not(.scrolled) .main-nav .nav-menu .menu-item > a,
  .site-header .main-nav.open .nav-menu .menu-item > a,
  .main-nav.open .nav-menu .menu-item > a {
    color: #0f172a !important;
    background: transparent !important;
  }
  .site-header:not(.scrolled) .main-nav .nav-menu .menu-item > a:hover,
  .site-header:not(.scrolled) .main-nav .nav-menu .current-menu-item > a,
  .site-header .main-nav.open .nav-menu .menu-item > a:hover,
  .site-header .main-nav.open .nav-menu .current-menu-item > a,
  .main-nav.open .nav-menu .menu-item > a:hover,
  .main-nav.open .nav-menu .current-menu-item > a {
    color: var(--mrv-accent-dark, #0d6a63) !important;
    background: rgba(15, 118, 110, 0.08) !important;
  }
  .main-nav .nav-menu .sub-menu a {
    color: #334155 !important;
  }
}

/* Footer redesign (live markup uses .site-footer + .footer-links-list) */
.site-footer,
.site-footer .footer-top { background: #fff !important; }
.site-footer .footer-bottom { background: #244854 !important; }
.site-footer { color: #244854 !important; }
.footer-col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #244854 !important;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(27, 67, 50, 0.15) !important;
}
.footer-about-text { color: #244854 !important; }
.footer-links-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.footer-links-list li {
  list-style: none !important;
  margin-bottom: 2px;
}
.footer-links-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #244854 !important;
  padding: 5px 0;
  transition: color .15s;
  text-decoration: none;
}
/* Single bullet via ::before only */
.footer-col .footer-links-list a::before,
.footer-links-list a::before {
  content: '' !important;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(27, 67, 50, 0.35) !important;
  margin-right: 0;
  flex-shrink: 0;
}
.footer-links-list a:hover,
.footer-col .footer-links-list a:hover {
  color: #1b4332 !important;
}
.footer-links-list a:hover::before,
.footer-col .footer-links-list a:hover::before {
  background: #1b4332 !important;
}
.footer-col a:hover {
  color: #1b4332 !important;
}
.footer-contact-item { color: #244854 !important; }
.footer-contact-item a { color: #244854 !important; }
.footer-contact-item a:hover { color: #1b4332 !important; }
