/* Wire · h9311g · Mobile Bottom Home Row Alignment
 *
 * h9311f fixed the overlap but left BOTH the Home icon and Home label sitting
 * too high relative to the other bottom-nav items.
 *
 * This final cosmetic owner moves only the Home icon + label down together
 * while keeping the nav item itself, active-state owner, and all other items
 * untouched.
 */

@media(max-width:820px){
  nav.wire-mobile-nav-v230j
  > a.wire-mobile-nav-item[href="/home"]::after{
    width:22px!important;
    min-width:22px!important;
    max-width:22px!important;
    height:22px!important;
    min-height:22px!important;
    max-height:22px!important;
    flex-basis:22px!important;
    transform:translateY(11px)!important;
  }

  nav.wire-mobile-nav-v230j
  > a.wire-mobile-nav-item[href="/home"]
  > span:last-child{
    transform:translateY(11px)!important;
  }
}

@media(display-mode:standalone) and (max-width:820px){
  nav.wire-mobile-nav-v230j
  > a.wire-mobile-nav-item[href="/home"]::after,
  nav.wire-mobile-nav-v230j
  > a.wire-mobile-nav-item[href="/home"]
  > span:last-child{
    transform:translateY(11px)!important;
  }
}
