/* Leadership Page Styles */
.leadership-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.leadership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.leadership-content h1 {
    font-family: \
Merriweather\, serif;
    font-weight: 900;
    font-size: 32px;
    color: #213;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-content h2 {
    font-family: \Merriweather\, serif;
    font-weight: 700;
    font-size: 24px;
    color: #213;
    margin: 0 0 20px;
}

.leadership-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.team-profiles-section {
    padding: 60px 0;
    background: #fff;
}

.team-profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-profile {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.francis-image {
    width: 180px;
    height: 180px;
}

.team-profile h3 {
    font-family: \Merriweather\, serif;
    font-weight: 700;
    font-size: 20px;
    color: #213;
    margin: 0 0 8px;
}

.team-profile h4 {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-bio p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .leadership-content h1 {
        font-size: 24px;
    }
    
    .leadership-content h2 {
        font-size: 20px;
    }
    
    .team-profiles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .team-profile {
        padding: 25px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .francis-image {
        width: 140px;
        height: 140px;
    }
    
    .team-profile h3 {
        font-size: 18px;
    }
    
    .team-profile h4 {
        font-size: 13px;
    }
    
    .profile-bio p {
        font-size: 13px;
    }
}
