/* Bloc Diplômes */
.diplomes-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}

.diplome-list {
  display: flex;
  flex-wrap: wrap; /* passe en plusieurs lignes si trop étroit */
  gap: 20px;
  justify-content: center;
}

.diplome {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.diplome img {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
  object-fit: contain;
}

.diplome:hover {
  transform: scale(1.1);
}
