/* V39 — final split footer legal row
   Desktop: copyright left, legal links together on the right.
   Mobile: neatly stacked and centred. */
.site-footer .footer-bottom{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  grid-template-rows:auto!important;
  justify-content:stretch!important;
  justify-items:stretch!important;
  align-items:center!important;
  column-gap:32px!important;
  row-gap:0!important;
  width:100%!important;
  padding:22px 0 26px!important;
  text-align:left!important;
}
.site-footer .footer-bottom>span{
  display:block!important;
  grid-column:1!important;
  grid-row:1!important;
  justify-self:start!important;
  width:auto!important;
  max-width:100%!important;
  margin:0!important;
  text-align:left!important;
  white-space:normal!important;
}
.site-footer .footer-legal{
  display:flex!important;
  grid-column:2!important;
  grid-row:1!important;
  justify-self:end!important;
  flex-direction:row!important;
  flex-wrap:nowrap!important;
  justify-content:flex-end!important;
  align-items:center!important;
  gap:24px!important;
  width:auto!important;
  margin:0!important;
  text-align:right!important;
}
.site-footer .footer-legal a{
  display:inline-block!important;
  white-space:nowrap!important;
}
@media(max-width:640px){
  .site-footer .footer-bottom{
    grid-template-columns:1fr!important;
    grid-template-rows:auto auto!important;
    row-gap:12px!important;
    text-align:center!important;
  }
  .site-footer .footer-bottom>span{
    grid-column:1!important;
    grid-row:1!important;
    justify-self:center!important;
    width:100%!important;
    text-align:center!important;
  }
  .site-footer .footer-legal{
    grid-column:1!important;
    grid-row:2!important;
    justify-self:center!important;
    justify-content:center!important;
    width:100%!important;
    text-align:center!important;
  }
}
