/* Section Leadership - Style simple et professionnel */

.leadership-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.leadership-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.leadership-section-title h6 {
    font-size: 14px;
    font-weight: 600;
    color: #43bc75;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.leadership-section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1f2026;
    margin-bottom: 15px;
}

.leadership-section-title p {
    font-size: 16px;
    color: #777777;
    max-width: 600px;
    margin: 0 auto;
}

.leadership-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.leadership-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.leadership-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.leadership-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.leadership-info {
    padding: 30px 25px;
    text-align: center;
}

.leadership-name {
    font-size: 22px;
    font-weight: 700;
    color: #1f2026;
    margin-bottom: 8px;
    line-height: 1.3;
}

.leadership-title {
    font-size: 15px;
    font-weight: 500;
    color: #5865f2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.leadership-badge {
    display: inline-block;
    background-color: #5865f2;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
    .leadership-section {
        padding: 60px 0;
    }
    
    .leadership-card {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .leadership-section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .leadership-section {
        padding: 50px 0;
    }
    
    .leadership-card {
        margin: 15px;
    }
    
    .leadership-section-title h2 {
        font-size: 30px;
    }
    
    .leadership-name {
        font-size: 20px;
    }
    
    .leadership-title {
        font-size: 14px;
    }
}

