/* site-footer-fix.css — desktop-only footer alignment (v2, strong) */
@media (min-width:901px){
  footer{ text-align: initial !important; }
  footer > .container{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:16px !important;
    flex-wrap:wrap !important;
  }
  footer > .container > .links{
    display:flex !important;
    gap:12px !important;
    flex-wrap:wrap !important;
    justify-content:flex-start !important;
    margin-left:auto !important;
  }
}