/* ════════════════════════════════════════════════ */
/* ▶ SECTION STYLING                                */
/* ════════════════════════════════════════════════ */

.section1 { background-color: #3aba9b; }
.section2 { background-color: #ee3a37; }
.section3 { background-color: #f17fb2; }
.section4 { background-color: #ee3a37; }


/* ════════════════════════════════════════════════ */
/* ▶ NAVBAR STYLING: ACTIVE PAGE                    */
/* ════════════════════════════════════════════════ */

li .nav-button-about-us {
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

li .nav-button-about-us:hover {
    color: #0051a4;
}

.board-members-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    align-content: flex-end;
}


.board-member {
    max-width: 300px;
    min-width: 220px;
    color: black;
    background-color: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 5px 15px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin-bottom: 20px;
}



.body-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-evenly;
    /* border: 2px solid #3740ee; */
    text-align: left;
}

.member-name {
    /* border: 2px solid #37e8ee; */
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;


}

.member-function {
    /* border: 2px solid #eeb437; */
    font-size: 1rem;
    font-weight: lighter;

}




