/* =======================================================================
   File: components/text-content.css                                                   
   Author: Émile SNYERS                                                    
   Date: 2025-08-16                                                       
   Version: v1.0.0                                                 
   Purpose: Bloc texte avec barre latérale d'accent et effet shimmer.                                                  
   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.
   ======================================================================= */
.text-content {
  margin: 20px 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--aperture-blue);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.text-content::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
  animation: shimmer 3s infinite;
}
/* ===== End of components/text-content.css | Author: Émile SNYERS | Date: 2025-08-16 | v1.0.0 ===== */
