/* =======================================================================
   File: components/content-section.css                                                   
   Author: Émile SNYERS                                                    
   Date: 2025-08-16                                                       
   Version: v1.0.0                                                 
   Purpose: Cartes de contenu génériques avec halo au survol.                                                  
   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.
   ======================================================================= */
.content-section {
  background: var(--aperture-grey);
  border: 1px solid var(--aperture-light-grey);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: none;
}
.content-section.visible { animation: fadeInUp 0.8s ease-out forwards; }
.content-section::before {
  content: '';
  position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(45deg, var(--aperture-orange), var(--aperture-blue));
  border-radius: var(--radius-md);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.content-section:hover::before { opacity: 0.1; }
/* ===== End of components/content-section.css | Author: Émile SNYERS | Date: 2025-08-16 | v1.0.0 ===== */
