/* ── Footer Socials ── */
.footer-socials {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.footer-social:hover {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

.footer-social svg {
  display: block;
  flex-shrink: 0;
}

/* ── Footer Bottom Bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-socials {
    flex-wrap: wrap;
  }
}
