.socialIcons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

/* =========================
   ICON WRAPPER
========================= */

.socialIcons .iconWrapper {
  position: relative;
  display: inline-block;
}

/* =========================
   ICONS
========================= */

.socialIcons .iconWrapper .icon,
.socialIcons .iconWrapper .hoverIcon {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease-in;
}

/* Hide hover icon initially */

.socialIcons .iconWrapper .hoverIcon {
  display: none;
}

/* =========================
   HOVER EFFECT
========================= */

.socialIcons .iconWrapper:hover .icon {
  display: none;
}

.socialIcons .iconWrapper:hover .hoverIcon {
  display: block;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media screen and (max-width: 768px) {
  .socialIcons {
    gap: 0.5rem;
  }

  .socialIcons .iconWrapper .icon,
  .socialIcons .iconWrapper .hoverIcon {
    width: 1.7rem;
    height: 1.7rem;
  }
}