/* ========================================
   LEADERSHIP PAGE STYLES
   ======================================== */
.leadership-section {
    padding: 100px 0;
    background: var(--pure-white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.leader-card {
    background: var(--deep-blue);
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--gold-accent);
}

.leader-image {
    width: 100%;
    height: 350px;
    background-color: var(--royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-icon-placeholder {
    font-size: 5rem;
    color: rgba(255, 215, 0, 0.5);
}

.leader-info {
    padding: 30px 20px 0;
    color: var(--pure-white);
}

.leader-name {
    font-size: 1.8rem;
    color: var(--gold-accent);
    margin-bottom: 5px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.leader-role {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--pure-white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.leader-dept {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.main-leader {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    background: var(--royal-blue);
}

.main-leader .leader-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .main-leader {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
