.elementor-20395 .elementor-element.elementor-element-f2bff7b{--display:flex;}.elementor-20395 .elementor-element.elementor-element-b359cbe .elementor-heading-title{color:var( --e-global-color-secondary );}/* Start custom CSS *//* === SE-UNSA 71 — ÉQUIPE &amp; CONTACTS === */
/* Couleurs principales */
#seu71-wrapper {
  --bleu: #007BA5;
  --orange: #EB6209;
  --violet: #8B5CF6;
  --gris: #B2B2B2;
  --fond: #f7fafc;
  background: var(--fond);
  color: #1f2937;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  width: 100%;
}

/* Liens */
#seu71-wrapper a {
  color: var(--bleu);
  text-decoration: none;
}
#seu71-wrapper a:hover {
  text-decoration: underline;
}

/* === Bandeau supérieur === */
#seu71-wrapper header {
  background: linear-gradient(90deg, var(--orange) 0%, var(--bleu) 100%) !important;
  color: #fff;
  padding: 32px 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}
#seu71-wrapper header .container {
  width: 100%;
  margin: auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#seu71-wrapper .brand {
  display: flex;
  gap: 16px;
  align-items: center;
}
#seu71-wrapper .logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}
#seu71-wrapper .brand h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}
#seu71-wrapper .brand h1 small {
  display: block;
  font-weight: 400;
  font-size: 15px;
  opacity: .9;
}
#seu71-wrapper .contacts-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  text-align: right;
}
#seu71-wrapper .contacts-top a {
  color: #fff;
  font-weight: 600;
}

/* === Conteneurs principaux === */
#seu71-wrapper .container {
  width: 100%;
  margin: auto;
  padding: 32px 24px;
}
#seu71-wrapper h2 {
  color: var(--bleu);
  margin-top: 0;
}
#seu71-wrapper .seu-intro {
  font-size: 17px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 24px;
}

/* === Grille responsive === */
#seu71-wrapper .grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch;
}

/* 2 colonnes à partir de 900px */
@media (min-width: 900px) {
  #seu71-wrapper .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 3 colonnes à partir de 1300px */
@media (min-width: 1300px) {
  #seu71-wrapper .grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* === Cartes === */
#seu71-wrapper .card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
  transition: transform .15s ease, box-shadow .15s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: seuFadeIn 0.6s ease-out forwards;
}

/* Apparition décalée */
#seu71-wrapper .card:nth-child(2) { animation-delay: 0.1s; }
#seu71-wrapper .card:nth-child(3) { animation-delay: 0.2s; }
#seu71-wrapper .card:nth-child(4) { animation-delay: 0.3s; }
#seu71-wrapper .card:nth-child(5) { animation-delay: 0.4s; }

/* Animation d'apparition */
@keyframes seuFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Effet au survol */
#seu71-wrapper .card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
}

/* === Structure interne des cartes === */
#seu71-wrapper .person {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
#seu71-wrapper .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--orange);
  flex: 0 0 auto;
}
#seu71-wrapper .card h3 {
  margin: .3rem 0 0;
  font-size: 20px;
}
#seu71-wrapper .role {
  color: var(--orange);
  font-weight: 700;
  margin: .25rem 0 .35rem;
}
#seu71-wrapper .decharge {
  color: var(--violet);
  font-weight: 700;
  margin: .2rem 0 .4rem;
  font-size: 15px;
}
#seu71-wrapper .desc {
  color: #4b5563;
  margin: .25rem 0 .5rem;
  font-size: 15px;
}
#seu71-wrapper .school {
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 .35rem;
}
#seu71-wrapper .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
#seu71-wrapper .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--bleu);
  border-radius: 12px;
  font-weight: 600;
  color: var(--bleu);
  background: #fff;
  transition: all .2s ease;
}
#seu71-wrapper .btn:hover {
  background: #eff6ff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

/* === Pied de page === */
#seu71-wrapper footer {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  padding: 24px 0 32px;
}/* End custom CSS */