footer p {
  margin: 0;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease, background-color .2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 46, 27, .1);
}

.social-youtube:hover {
  border-color: rgba(230, 33, 23, .3);
  background: #fff7f6;
  color: #e62117;
}

.social-x:hover {
  border-color: rgba(17, 17, 17, .24);
  background: #f5f7f6;
  color: #111;
}

.social-facebook:hover {
  border-color: rgba(24, 119, 242, .28);
  background: #f4f8ff;
  color: #1877f2;
}

.social-linkedin:hover {
  border-color: rgba(10, 102, 194, .3);
  background: #f3f9ff;
  color: #0a66c2;
}

.social-instagram:hover {
  border-color: rgba(193, 53, 132, .28);
  background: #fff5fa;
  color: #c13584;
}

.social-link:focus-visible {
  outline: 3px solid rgba(93, 187, 99, .4);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .social-link {
    flex: 1 1 132px;
    justify-content: center;
    max-width: 170px;
  }
}
