.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.social-links a.social-icon-link {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 13px !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #eefaf4 !important;
  font-weight: 900;
  text-decoration: none;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.social-links a.social-icon-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-120%);
  transition: transform .65s ease;
}

.social-links a.social-icon-link:hover,
.social-links a.social-icon-link:focus {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .32);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  outline: none;
}

.social-links a.social-icon-link:hover::before,
.social-links a.social-icon-link:focus::before {
  transform: translateX(120%);
}

.social-links .social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  position: relative;
  z-index: 1;
}

.social-links .social-label {
  position: relative;
  z-index: 1;
}

.social-links a[data-social="linkedin"]:hover {
  background: #0a66c2;
}

.social-links a[data-social="facebook"]:hover {
  background: #1877f2;
}

.social-links a[data-social="instagram"]:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

@media (prefers-reduced-motion: reduce) {
  .social-links a.social-icon-link,
  .social-links a.social-icon-link::before {
    transition: none;
    animation: none;
  }
}
