/* =======================================================================
   File: components/list-content.css                                                   
   Author: Émile SNYERS                                                    
   Date: 2025-08-16                                                       
   Version: v1.0.0                                                 
   Purpose: Listes avec puces animées et transitions.                                                  
   Notes: 
   - Code organisé par modules pour un projet plus professionnel.
   - Commentaires présents en tête de fichier et avant chaque bloc.
   - Les couleurs et styles initiaux sont conservés via des variables.
   ======================================================================= */
.list-content {
  list-style: none;
  margin: 20px 0;
}
.list-content li {
  padding: 15px;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--aperture-orange);
  position: relative;
  padding-left: 40px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.5s ease-out forwards;
}
.list-content li:nth-child(1) { animation-delay: 0.1s; }
.list-content li:nth-child(2) { animation-delay: 0.2s; }
.list-content li:nth-child(3) { animation-delay: 0.3s; }
.list-content li:nth-child(4) { animation-delay: 0.4s; }
.list-content li:nth-child(5) { animation-delay: 0.5s; }
.list-content li:hover {
  transform: translateX(5px);
  background: rgba(0, 0, 0, 0.5);
  border-left-color: var(--aperture-blue);
}
.list-content li::before {
  content: '▶';
  position: absolute;
  left: 15px;
  color: var(--aperture-orange);
  transition: all 0.3s ease;
}
.list-content li:hover::before {
  transform: translateX(5px);
  color: var(--aperture-blue);
}
/* ===== End of components/list-content.css | Author: Émile SNYERS | Date: 2025-08-16 | v1.0.0 ===== */
