/*
@author UBPartner
*/
/* Team Cards */
.team-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  border: 1px solid #eef0f8;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(115,71,179,0.13);
}

.team-avatar {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #7347b3, #6ea2d9);
  position: relative;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-avatar-fallback {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: rgba(255,255,255,0.6);
}

.team-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-role {
  display: block;
  color: #7347b3;
  font-size: 13px;
  font-weight: 600;
  margin: 4px 0 10px;
}

.team-desc {
  display: none;
}

.team-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #e0e8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7347b3;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s;
}

.team-socials a:hover {
  background: #7347b3;
  border-color: #7347b3;
  color: #fff;
}

/* La section équipe portait un style en ligne background-color:
   white, retiré du balisage : le blanc est posé ici, où il reste
   modifiable depuis la feuille de style. */
#equipe {
  background: #fff;
}

