.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: var(--panel);
  color: rgba(245,240,232,.72);
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--gold);
  border-color: rgba(215,182,106,.42);
  background: rgba(215,182,106,.08);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}