/* Footer: legal links + social icons (mobile centered, desktop inline) */
.footer-inner-min{
  padding: 18px 0;
  align-items: center;
}
.footer-brand-row{
  display:flex;
  align-items:center;
}
.footer-copy{
  color: rgba(255,255,255,.76);
  font-size: 14px;
  letter-spacing: .2px;
}
.footer-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap: wrap;
  gap: 8px;
  row-gap: 6px;
}
.footer-link{
  color: rgba(255,255,255,.72);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.footer-link:hover{
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-sep{
  color: rgba(255,255,255,.35);
  padding: 0 6px;
}
.social-links{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  margin-left: 8px;
}
.social-link{
  width: 34px;
  height: 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(18,22,35,.18);
  color: rgba(255,255,255,.78);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.social-link svg{
  width: 18px;
  height: 18px;
}
.social-link:hover{
  background: rgba(18,22,35,.34);
  color: rgba(255,255,255,.94);
  transform: translateY(-1px);
}
.social-link:active{
  transform: translateY(0);
}

.social-links-mobile{ display:none; }
.social-links-desktop{ display:inline-flex; }

@media (max-width: 720px){
  .footer-inner{
    padding: 14px 0;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    gap: 8px;
  }
  .footer-copy{
    text-align: center;
    width: 100%;
  }
  .footer-right{
    justify-content: center;
    text-align:center;
    gap: 8px;
  }
  .footer-sep{ display:none; }
  .social-links-desktop{ display:none; }
  .social-links-mobile{
    display:flex;
    justify-content:center;
    width:100%;
    margin-top: 4px;
  }
  .social-links{ margin-left: 0; }
}
