/* Bloc Team */
.team-section {
    width: 100%;
    min-height: 40vh;
    padding: 90px 0px 40px 0px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    color: #1B1F1F;
    text-align: center;
    background: white;
}

.team-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    margin-bottom: 60px;
}

.team-badge {
  display: inline-block;
  padding: .3rem .8rem;
  border: 1px solid #134F50;
  border-radius: 14px;
  color: #134F50;
  /* Police */
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.team-title {
    margin: 15px 0 20px;
    color: #1B1F1F;
    /* Police */
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.team-subtitle {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #1B1F1F;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-name {
    margin-bottom: 5px;
    color: #1B1F1F;
    /* Police */
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.team-role {
    margin-bottom: 15px;
    color: #1B1F1F;
    /* Police */
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social-link {
    font-size: 20px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-social-link:hover {
    color: #333;
}

/* Responsive */
@media (max-width: 1050px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .team-title {
        font-size: 28px;
    }

    .team-subtitle {
        margin: 0 auto;
        padding: 0 10px;
    }
}

/* Adaptation générale pour les écrans très petits */
@media (max-width: 480px) {
    .team-subtitle {
        padding: 0 10px;
    }
}
