/* Bloc Passions */
.bento-item.passions-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.passions-icons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* espace entre les passions */
}

.passion {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.passion:hover {
  transform: scale(1.1);
}

/* Icône et label */
.passion .icon {
  font-size: 2rem;
  line-height: 1;
}

.passion .label {
  font-size: 1rem;
  font-weight: bold;
}
