
/* =====================================================
   OUR LEADERS
===================================================== */

.leaders-page {
    background: #f7f9f7;
    min-height: 100vh;
    padding: 0 0 50px;
    max-width: 1200px;
    margin: 0 auto;
}
/* .leaders-page-container{
    
  
} */
/* =====================================================
   PAGE HEADER
===================================================== */

.leaders-header {
    padding: 55px 0 45px;
    background: #ffffff;
    border-bottom: 1px solid #e5e9e6;
}

.leaders-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.leaders-eyebrow {
    display: block;
    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: #287c4b;
}

.leaders-header h1 {
    margin: 0 0 12px;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;

    color: #17251c;
}

.leaders-header p {
    max-width: 600px;
    margin: 0;

    font-size: 16px;
    line-height: 1.6;

    color: #6c756f;
}

/* =====================================================
   MAIN CONTAINER
===================================================== */

.leaders-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 20px 70px;
}

/* =====================================================
   FEATURED LEADERS
===================================================== */

.featured-leaders {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* =====================================================
   FEATURED CARD
===================================================== */

.leader-card-large {
    display: flex;
    flex-direction: column;
    min-width: 0;

    background: #ffffff;
    border: 1px solid #e2e7e3;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.leader-card-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

/* =====================================================
   FEATURED IMAGE
===================================================== */

.leader-image {
    width: 100%;
    aspect-ratio: 4 / 3;

    background: #e9eee9;

    overflow: hidden;
}

.leader-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;

    transition: transform 0.4s ease;
}

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

/* =====================================================
   FEATURED INFORMATION
===================================================== */

.leader-info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 22px 26px;
}

.leader-number {
    display: none;
}

.leader-info h2 {
    margin: 0 0 9px;

    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.15;

    color: #17251c;
}

.leader-department {
    margin: 0 0 5px;

    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;

    color: #287c4b;
}

.leader-position {
    margin: 0;

    font-size: 13px;
    line-height: 1.5;

    color: #737c76;
}

/* =====================================================
   READ MORE
===================================================== */

.leader-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    margin-top: 20px;

    font-size: 13px;
    font-weight: 700;

    color: #17251c;
    text-decoration: none;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}

.leader-read-more span {
    font-size: 17px;
}

.leader-read-more:hover {
    gap: 13px;
    color: #287c4b;
}

/* =====================================================
   SECONDARY SECTION HEADING
===================================================== */

.leaders-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin: 65px 0 28px;
}

.leaders-section-heading h2 {
    margin: 0;

    font-size: 32px;
    line-height: 1.15;

    color: #17251c;
}

.leaders-section-heading p {
    max-width: 400px;
    margin: 0;

    font-size: 14px;
    line-height: 1.6;

    color: #707a73;
}

/* =====================================================
   SMALL LEADERS
===================================================== */

.leaders-small-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* =====================================================
   SMALL CARD
===================================================== */

.leader-small-card {
    display: flex;
    align-items: center;

    min-width: 0;
    min-height: 150px;

    background: #ffffff;
    border: 1px solid #e2e7e3;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.leader-small-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

/* =====================================================
   SMALL IMAGE
===================================================== */

.leader-small-image {
    flex: 0 0 120px;

    width: 120px;
    height: 120px;

    margin: 18px;

    border-radius: 50%;
    border: 3px solid #adadad;

    background: #e9eee9;

    overflow: hidden;
}

.leader-small-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;

    transition: transform 0.35s ease;
}

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

/* =====================================================
   SMALL INFORMATION
===================================================== */

.leader-small-info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;

    padding: 18px 18px 18px 0;
}

.leader-small-info > span {
    margin-bottom: 6px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #9aa39d;
}

.leader-small-info h3 {
    margin: 0 0 5px;

    font-size: 16px;
    line-height: 1.25;

    color: #17251c;
}

.leader-small-info p {
    margin: 0;

    font-size: 12px;
    line-height: 1.4;

    color: #737c76;
}

.leader-small-info a {
    display: inline-block;

    width: fit-content;

    margin-top: 9px;

    font-size: 11px;
    font-weight: 700;

    color: #287c4b;

    text-decoration: none;
}

.leader-small-info a:hover {
    text-decoration: underline;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .leaders-page {
        padding: 0 25px 50px;
    }

    .leaders-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .featured-leaders {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .leaders-small-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .leader-small-image {
        flex-basis: 95px;

        width: 95px;
        height: 95px;

        margin: 15px;
    }

    .leader-small-info {
        padding-right: 15px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .leaders-page {
        padding: 0 15px 40px;
    }

    .leaders-header {
        padding: 42px 0 35px;
    }

    .leaders-header .container {
        padding: 0 15px;
    }

    .leaders-header h1 {
        font-size: 40px;
    }

    .leaders-header p {
        font-size: 14px;
    }

    .leaders-container {
        padding: 30px 0 55px;
    }

    /* Featured cards */

    .featured-leaders {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .leader-info {
        padding: 20px;
    }

    .leader-info h2 {
        font-size: 22px;
    }

    /* Section heading */

    .leaders-section-heading {
        display: block;

        margin: 50px 0 22px;
    }

    .leaders-section-heading h2 {
        font-size: 27px;
    }

    .leaders-section-heading p {
        margin-top: 10px;

        font-size: 13px;
    }

    /* Small cards */

    .leaders-small-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .leader-small-card {
        min-height: 125px;
    }

    .leader-small-image {
        flex: 0 0 90px;

        width: 90px;
        height: 90px;

        margin: 15px;
    }

    .leader-small-info {
        padding: 15px 15px 15px 0;
    }

    .leader-small-info h3 {
        font-size: 15px;
    }
}

/* =====================================================
   VERY SMALL DEVICES
===================================================== */

@media (max-width: 380px) {

    .leaders-page {
        padding: 0 10px 35px;
    }

    .leaders-header h1 {
        font-size: 34px;
    }

    .leader-info {
        padding: 18px;
    }

    .leader-small-card {
        min-height: 115px;
    }

    .leader-small-image {
        flex: 0 0 78px;

        width: 78px;
        height: 78px;

        margin: 12px;
    }

    .leader-small-info {
        padding: 12px 12px 12px 0;
    }

    .leader-small-info h3 {
        font-size: 14px;
    }

    .leader-small-info p {
        font-size: 11px;
    }
}