/*==================================
        MEET THE FOUNDER
===================================*/

.founder {

    padding: 4rem 0;

}

.founder-row {

    align-items: center;

}

@media(min-width:992px) {

    .founder-row {

        --bs-gutter-x: 5rem;

    }

}

.founder-image {

    width: 100%;

    border-radius: var(--radius);

    object-fit: cover;

}

.founder-content {

    max-width: 520px;

}

.founder-content h2 {

    font-size: clamp(2.4rem, 5vw, 3.4rem);

    font-weight: 400;

    margin: 1rem 0 .5rem;

}

.founder-content h4 {

    color: var(--primary);

    font-family: var(--font-body);

    font-weight: 600;

    font-size: 1.3rem;

    margin-bottom: 1.5rem;

}

.founder-content p {

    color: #000000;

    line-height: 1.8;

    margin-bottom: 0;

}

/*=========================
        MOBILE
==========================*/

@media(max-width:991.98px) {

    .founder {

        padding: 1rem 0;

    }

    .founder-row {

        row-gap: 3rem;

    }

    .founder-content {

        text-align: center;

        margin: auto;

    }

    .founder-content h2 {

        margin: .75rem 0 .4rem;

    }

    .founder-content h5 {

        margin-bottom: 1rem;

    }

}


/* ============================
   BOARD OF TRUSTEES
============================ */

.trustees-section{

    padding:30px 0;

}


.trustees-section .container{

    background:#E8F5F4;

    border-radius:20px;

    padding:50px 60px;

}


.section-description{

    max-width:700px;

    margin:10px auto 0;

    color:#000000;

    line-height:1.9;
    margin-bottom: 40px;

}


.trustees-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:30px;

}


.trustee-card{

    text-align:center;

}


.trustee-card img{

    width:100%;

    height:auto;

    object-fit:cover;

    border-radius:24px;

    margin-bottom:10px;

}


.trustee-card h5{

    font-family:"Fraunces", serif;

    color:#00252A;

    margin:0;
    font-weight:400;

}
.boardsection-heading h1{
    font-weight: 400;
}



@media (max-width: 992px) {

    .trustees-section .container {

        width: calc(100% - 20px);
        margin: 0 auto;
        padding: 40px 20px;
        border-radius: 20px;

    }

    .trustees-grid {

        grid-template-columns: 1fr;
        gap: 30px;

    }

}