.leadership-hero {
    background: radial-gradient(circle at 85% 15%, rgba(157, 169, 0, .28), transparent 31%), linear-gradient(118deg, #071f33 0%, #14301c 65%, #3d4a0b 100%);
    color: #fff;
    padding: 56px 6% 64px;
}
.leadership-eyebrow {
    color: #bdeef2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.leadership-hero h1 {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: 0;
}
.leadership-hero h1 span {
    color: #c8df65;
}
.leadership-hero-sub {
    max-width: 620px;
    margin: 16px 0 0;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .82);
}

.leadership-section {
    background: linear-gradient(180deg, #edf5f8 0, #fff 30%);
    padding: 56px 6% 90px;
}
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.leader-card {
    background: #ffffff;
    border: 1px solid #e6eef2;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(16, 42, 67, .08);
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.leader-card:has(.leader-photo:hover) {
    z-index: 5;
}
.leader-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid #f2f6de;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
}
.leader-photo:hover,
.leader-photo:focus {
    transform: scale(2.6);
    box-shadow: 0 18px 40px rgba(16, 42, 67, .28);
    position: relative;
    z-index: 5;
}
.leader-name {
    font-size: 19px;
    font-weight: 600;
    color: #102a43;
    margin: 0 0 2px;
}
.leader-title {
    font-size: 13px;
    font-weight: 700;
    color: #6e7600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 16px;
}
.leader-bio {
    font-size: 14px;
    line-height: 1.7;
    color: #627d98;
    margin: 0 0 12px;
}
.leader-specialties {
    background: #f6f9fc;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 6px;
}
.leader-specialties h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #102a43;
    margin: 0 0 6px;
}
.leader-specialties p {
    font-size: 13px;
    line-height: 1.6;
    color: #627d98;
    margin: 0;
}
.leader-more-toggle {
    align-self: flex-start;
    background: none;
    border: none;
    color: #6e7600;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 0;
    margin-top: 14px;
    cursor: pointer;
}
.leader-more-toggle:hover {
    color: #4f5400;
}
.leader-more-toggle .fa-chevron-down {
    transition: transform .2s ease;
    margin-left: 4px;
}
.leader-more-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}
