.equipe {
  text-align: center;
  padding: 2rem;
}

.equipe h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.equipe p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.equipe-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.equipe-slider {
  display: flex;
  gap: 1rem;
  animation: scrollEquipe 20s linear infinite;
}

.equipe-item {
  flex: 0 0 auto;
  text-align: center;
}

.equipe-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}



.equipe-item .nom {
  font-weight: bold;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.equipe-item .role {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}


/* Animation pour mobile uniquement */
@media (min-width: 768px) {
  .equipe-slider {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@keyframes scrollEquipe {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

    @media (max-width: 768px) {
  h1 { font-size: 2rem; }   ;
  h2 { font-size: 1.75rem; };
  h3 { font-size: 1.5rem; } ;
  h4 { font-size: 1.25rem; };
  p  { font-size: 0.95rem; };
}

/* Mobiles (≤ 480px) */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; };
  h2 { font-size: 1.5rem; } ;
  h3 { font-size: 1.25rem; };
  h4 { font-size: 1.1rem; } ;
  p  { font-size: 0.9rem; } ;
}
