.social-media-follow-us {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--color-foreground-foreground-on-hover);
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
}
.social-media-links-wrapper {
  display: flex;
  list-style-type: none;
  padding-left: 0;
  gap: 16px;
  margin-bottom: 0;
}
.social-media-link {
  background-color: var(--color-background-default);
  border-radius: var(--border-radius-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-media-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.social-media-link .icon {
  width: 24px;
  height: 24px;
  display: flex;
}
.social-media-link img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}