.hes-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--hes-space-3);
  list-style: none;
  margin: 0 0 var(--hes-space-4);
  padding: 0;
}

.hes-social-links__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hes-color-border);
  border-radius: var(--hes-radius-full);
  color: var(--hes-color-text-secondary);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.hes-social-links__link:hover,
.hes-social-links__link:focus-visible {
  color: var(--hes-color-link);
  border-color: var(--hes-color-link);
}

.hes-social-links__link:focus-visible {
  outline: 2px solid var(--hes-color-link);
  outline-offset: 2px;
}

.hes-social-links__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
