/* Section hero spécifique */

.eyebrow {
    font-size: 35px;
}
.hero--about {
  padding-top: calc(var(--header-h) + 60px);
}

.hero--about .hero__title {
  margin: 0.5rem 0 1rem;
}

.hero--about .hero__subtitle {
  max-width: 70ch;
  margin: 0 auto;
  color: var(--muted);
}

/* Grille équipe */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.team-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-card__body {
  padding: 1rem 1.2rem;
}

/* Barre dégradée au-dessus des cards */
.team-card__bar {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 16px 16px 0 0;
}

/* Amélioration rôle */
.team-card__role {
  color: var(--accent);
  font-weight: 600;
  margin: .35rem 0 .85rem;
  font-size: .95rem;
}

/* Valeurs */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .team-card__img {
    height: 500px;
  }
}
