/* Leadership Section Styles - Add this to your style.css */

.extended-leader {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.leader-photo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.leader-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.leader-info h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.leader-info .position {
    font-size: 1.1rem;
    color: #c9a961;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

/* Desktop Layout - Side by side */
@media (min-width: 768px) {
    .extended-leader {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .leader-photo {
        flex-shrink: 0;
        width: 250px;
        max-width: 250px;
        margin: 0;
    }
    
    .leader-info {
        flex: 1;
    }
}

/* Large Desktop - More space */
@media (min-width: 1024px) {
    .extended-leader {
        gap: 4rem;
        padding: 3rem;
    }
    
    .leader-photo {
        width: 280px;
        max-width: 280px;
    }
    
    .leader-photo img {
        height: 280px;
    }
}

/* Mobile - Smaller photos */
@media (max-width: 767px) {
    .extended-leader {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .leader-photo {
        max-width: 200px;
    }
    
    .leader-photo img {
        height: 200px;
    }
    
    .leader-info h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .leader-info .position {
        text-align: center;
    }
}