/*! Bejo: footer legal links hover (LIVE 27 Sep 2026, John 22:48 BST).
 * The footer nav menu (Elementor footer template 2910, widget 10e16ef: "Privacy", "T&C") turns logo red
 * #EE2737 on hover and on keyboard focus-visible, with a ~200 ms colour transition. The theme accent
 * (--e-global-color-accent / --accent-prim-color) is #FA163B, not the logo red, so the logo red is set here.
 * Scoped to the footer's nav menu only. The Rouben cursor hover ring is unaffected (it keys off the <a>). */
:root{--bejo-logo-red:#EE2737}
footer.elementor-location-footer .elementor-nav-menu a.elementor-item{
  transition:color .2s ease!important}
footer.elementor-location-footer .elementor-nav-menu a.elementor-item:hover,
footer.elementor-location-footer .elementor-nav-menu a.elementor-item:focus-visible{
  color:var(--bejo-logo-red)!important}
footer.elementor-location-footer .elementor-nav-menu a.elementor-item:focus-visible{
  outline:2px solid var(--bejo-logo-red);outline-offset:3px;border-radius:2px}
@media (prefers-reduced-motion:reduce){
  footer.elementor-location-footer .elementor-nav-menu a.elementor-item{transition:none!important}}
