/* ====== BLOC RESEAUX ====== */
.networks-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.network-icons {
  display: flex;
  gap: 15px; /* espace entre les icônes */
}

.network-icon img {
  width: 80px;  /* taille des icônes */
  height: 80px;
  transition: transform 0.3s ease;
}

.network-icon img:hover {
  transform: scale(1.2); /* effet hover */
}
