/* ============================================================
   Off Axis — Fix Off Canvas menu current-menu-item color
   
   Context: WordPress marks all /#hash links as current-menu-item
   when on the homepage, causing all nav items to be coral (#FF4938).
   This override restores ivory for the default state and restricts
   coral to :hover only. Selector limited to Off Canvas only.
   ============================================================ */
body #slide-out-widget-area.slide-out-from-right .off-canvas-menu-container li.current-menu-item > a,
body #slide-out-widget-area.slide-out-from-right .off-canvas-menu-container li.current_page_item > a,
body #slide-out-widget-area.slide-out-from-right .off-canvas-menu-container li.current-menu-ancestor > a {
  color: #F4F1E9;
}

body #slide-out-widget-area.slide-out-from-right .off-canvas-menu-container li.current-menu-item > a:hover,
body #slide-out-widget-area.slide-out-from-right .off-canvas-menu-container li.current_page_item > a:hover,
body #slide-out-widget-area.slide-out-from-right .off-canvas-menu-container li.current-menu-ancestor > a:hover,
body #slide-out-widget-area.slide-out-from-right .off-canvas-menu-container li > a:hover {
  color: #FF4938;
}