
/* Footer layout normalization */
.site-footer{
  background: var(--navy, #214354);
  color: var(--off, #F5F0EF);
}
.site-footer a{ color: #D6B7B5; text-decoration: underline; }
.site-footer .footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding: 18px 0;
}
.site-footer .footer-inner p{ margin:0; }
.site-footer .footer-nav{ white-space: nowrap; }
@media (max-width: 720px){
  .site-footer .footer-inner{ flex-direction:column; text-align:center; }
  .site-footer .footer-nav{ white-space: normal; }
}
