.social-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 190px;
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--navy);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: 0 8px 22px rgba(7,53,86,.09);
}

.social-link > span:last-child { line-height: 1.2; }
.social-link strong, .social-link small { display: block; }
.social-link small { color: var(--muted); font-size: .73rem; margin-top: .25rem; }

.social-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1;
}

.instagram-icon { font-size: 1.35rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: #fff; font-weight: 700; text-underline-offset: 4px; }

@media (max-width: 900px) {
  .footer-social { order: 2; }
}
