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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .28), transparent 30%),
    linear-gradient(135deg, #154f9a, #08a84f);
  box-shadow: 0 12px 30px rgba(8, 22, 38, .22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.social-links a:hover {
  transform: translateY(-2px) scale(1.08);
  filter: saturate(1.08);
  box-shadow: 0 18px 42px rgba(8, 168, 79, .28);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links__label {
  width: 100%;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 620px) {
  .social-links {
    margin-top: 12px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }
}
