/* assets/css/pages/leadership.css */




/* Page Header Styles moved to global.css */


/* Enhanced Leader Profiles */
.leader-profile {
    padding: 3rem;
    border-top: 4px solid var(--brand-primary);
    background-color: var(--bg-alt);
    /* Light Teal Background */
    text-align: left;
    /* Reset center align from global if set, though likely not needed */
    transition: var(--transition);
}

.leader-profile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.leader-profile h3 {
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

/* Ensure avatar centers */
.leader-profile>div:first-child {
    margin-left: 0;
    border-color: var(--bg-alt);
    /* Light teal border ring */
}

/* Improve paragraph spacing for readability */
.leader-profile p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--text-muted);
}