/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 22px 0;
  margin-top: 24px
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px
}

.socials a {
  color: var(--muted);
  margin-left: 12px;
  text-decoration: none;
  font-weight: 600
}

/* Responsive */
@media (max-width:900px) {
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}