/* --- LEADERSHIP PAGE STYLES --- */
.leadership-main {
    background-color: #000;
    color: #c0c0c0;
}

/* --- 1. Page Intro --- */
#leadership-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
    rgba(0,0,0,0.0) 0%,
    rgba(0,0,0,0.6) 90%
    );
    z-index: 1;
}

.leadership-intro-content {
    position: relative;
    z-index: 2;
}

#leadership-intro {
    background-color: #0a0a0a;
    padding: 8rem 5%;
    text-align: center;
    border-bottom: 1px solid #222;

    position: relative; /* For the overlay */
    background-image: url('../../assets/images/leadership-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden; /* Ensures no bleed-over */
}

#leadership-intro h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-top: 5rem;
    margin-bottom: 1rem;
}

#leadership-intro .leadership-leadin {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.7;
    max-width: 70ch;
    margin: 0 auto;
}

/* --- 2. Leader Bio Sections --- */
.leader-bio {
    /* Simple padding for each section */
    padding: 4rem 5% 2rem 5%;

    /* Separator line */
    border-bottom: 1px solid #222;
}

/* We hide the image div, as it's not used */
.leader-bio-image {
    display: none;
}

/* Center the text content block */
.leader-bio-content {
    max-width: 80ch; /* Comfortable reading width */
    margin: 0 auto;   /* Centers the block */
}

.leader-bio-content h2 {
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
}

.leader-bio-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #aaa;
    margin-bottom: 2rem;
}

.leader-bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pull-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3em;
    font-style: normal;
    color: #888;
    margin: 2em 0;
    padding: 1em 1.5em;
    border-left: 4px solid #58aed5;
    background-color: #333;
}
blockquote a {
    text-decoration: none;
}
blockquote a:hover {
    text-decoration: underline;
}

/* --- 3. Responsive --- */

@media (max-width: 900px) {
    #leadership-intro {
        padding: 4rem 5%;
    }

    #leadership-intro h1 {
        font-size: 2.5rem;
    }

    #leadership-intro .leadership-leadin {
        font-size: 1.1rem;
    }

    .leader-bio {
        padding: 3rem 5%;
    }

    .leader-bio-content h2 {
        font-size: 2.5rem;
    }

    .leader-bio-content h3 {
        font-size: 1.25rem;
    }
}