/* =========================================
   GENERAL
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #ffffff;
    color: #000000;

    font-family: "Montserrat", sans-serif;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.site {
    width: 100%;
}
/* =========================================
   HEADER
========================================= */

.header {
    width: 100%;
    max-width: 1200px;

    min-height: 72px;

    margin: 0 auto;

    padding: 12px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;

    gap: 8px;
}

/* Profile image */

.profile-image {
    width: 48px;
    height: 48px;

    object-fit: cover;

    border-radius: 50%;
}


/* HOME BUTTON */

.home-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 124px;
    height: 48px;

    background: #fed94d;

    border-radius: 50px;

    color: #000000;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;

    text-decoration: none;
}

/* PAGE TITLE */

.trustees-page h1 {
    margin: 0 0 64px;

    text-align: center;

    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;

    color: #000000;
}

/* TRUSTEES LIST */

.trustees-list {
    display: flex;
    flex-direction: column;

    gap: 32px;
}

/* EACH TRUSTEE */

.trustee {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 16px;

    text-align: center;
}

/* TRUSTEE PHOTO */

.trustee-image {
    width: 200px;
    height: 200px;

    border-radius: 50%;

    object-fit: cover;

    background: #d3d3d3;
}

/* NAME */

.trustee h2 {
    margin: 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;

    color: #000000;
}

/* POSITION */

.trustee h3 {
    margin: 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;

    color: #000000;
}

/* DESCRIPTION */

.trustee p {
    width: 100%;
    max-width: 700px;

    margin: 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.5;

    color: #000000;

    text-align: center;
}

/* MOBILE */

@media (max-width: 600px) {

    .trustees-header {
        padding: 40px 16px;
    }

    .trustees-page {
        padding: 0 16px 100px;
    }

    .trustees-page h1 {
        margin-bottom: 64px;
        font-size: 24px;
    }

    .trustee-image {
        width: 200px;
        height: 200px;
    }

    .trustee h2 {
        font-size: 20px;
    }

    .trustee h3 {
        font-size: 16px;
    }

    .trustee p {
        font-size: 16px;
        line-height: 1.5;
    }

}

/* SMALL PHONES */

@media (max-width: 400px) {

    .trustees-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-button {
        width: 110px;
    }

    .trustee-image {
        width: 180px;
        height: 180px;
    }

}


