.site-footer-bar{
  position:relative;
  z-index:30;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  color:var(--grey);
  font-family:"Roboto Mono","Courier New",monospace;
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  white-space:nowrap;
  transition:opacity .24s ease;
}
.footer-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  max-width:100%;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  scrollbar-width:none;
}
.footer-links::-webkit-scrollbar{display:none;}
.footer-links a{
  flex:0 0 auto;
  border-bottom:1px solid transparent;
  transition:color .2s ease,border-color .2s ease;
}
.footer-links a:hover{
  color:var(--red);
  border-color:var(--red);
}
.footer-divider{
  flex:0 0 auto;
  color:var(--line-strong);
}

@media (max-width:860px){
  .site-footer-bar{
    white-space:normal;
  }
  .footer-links{
    flex-wrap:wrap;
    gap:10px 12px;
  }
}
