/* Cartes éducation - version compacte par défaut */
.education-box {
  border: 2px solid #b88917;
  border-radius: 14px;
  padding: 15px;
  max-width: 100%;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden; /* cache le contenu développé */
  max-height: 90px; /* hauteur compacte */
}

/* Contenu supplémentaire caché */
.education-box .extra-info {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
}

/* État actif au clic */
.education-box.active {
  max-height: 500px; /* hauteur suffisante pour tout le contenu */
}

.education-box.active .extra-info {
  opacity: 1;
  max-height: 400px;
}

/* Effet hover sur chaque carte education */
.education-box {
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  position: relative;
}

/* Hover : légère couleur de fond et ombre */
.education-box:hover {
  background: #f0e7d8;
  box-shadow: #b88917;
  transform: translateY(-1px);
}

/* Déjà existant : afficher l'info supplémentaire au clic */
.education-box.expanded .extra-info {
  display: block;
}
