
.team-container {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f9f9f9;
}

.team-title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-title p {
    font-size: 1.1rem;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 400px; /* ✅ nouvelle hauteur minimale */
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #F6F1DE;
    margin-bottom: 20px;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.team-position {
    font-size: 1rem;
    color: #F28123;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-biography {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.empty-team {
    text-align: center;
    padding: 60px 0;
}

/* Pour le bouton "Lire plus" */
.btn-read-more {
    margin-top: 15px;
}
