.image-labo {
  position: relative; /* Important pour positionner .labo-info */
}
.labo-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Fond semi-transparent */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Masqué par défaut */
  transition: opacity 0.3s ease;
  padding: 5px;
  box-sizing: border-box;
  text-align: center;
}

/* Affiche le bloc au survol */
.image-labo:hover .labo-info {
  opacity: 1;
}

/* Style du nom et de la description */
.labo-name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.labo-desc {
  font-size: 11px;
}