/* Styles pour le module Formation */

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Animation pour les cartes de formation */
.formation-card {
  transition: all 0.3s ease;
}

.formation-card:hover {
  transform: translateY(-4px);
}

/* Style pour les questions du quiz */
input[type="radio"]:checked + span {
  font-weight: 600;
}

/* Progression circulaire */
.progress-ring {
  transform: rotate(-90deg);
  transform-origin: center;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
