/* ==========================================================================
   CONTACT.CSS
   ========================================================================== */

.contact__list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact__link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.15s ease;
}

.contact__link:hover {
  transform: translateY(-2px);
}

.contact__icon {
  width: 24px;
  height: 24px;
  object-fit: contain; /* keeps the real logo's proportions intact */
}
