.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--md-sys-color-on-surface-variant);
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover {
  background-color: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-primary);
}
.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}