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

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: #fff;
  color: #075ce4;
  transform: translateY(-2px);
  outline: none;
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.social-links svg rect,
.social-links svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links svg .social-dot {
  fill: currentColor;
  stroke: none;
}
