/* =====================================================
   PEOPLE SECTION
===================================================== */

.section-people {
    padding: 90px 0;
    background: #ffffff;
}

.section-people .container {
    max-width: 1400px;
}





/* =====================================================
   GRID
===================================================== */

.people-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
}


/* =====================================================
   PERSON CARD
===================================================== */

.person-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.person-card:first-child {
    padding-right: 35px;
    border-right: 1px solid #e6e9ef;
}


/* =====================================================
   PHOTO
===================================================== */

.person-photo {
    width: 140px;
}

.person-photo img {
    display: block;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 18px;

    box-shadow:
        0 18px 40px rgba(5, 31, 69, .10),
        0 5px 15px rgba(5, 31, 69, .05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


/* =====================================================
   CONTENT
===================================================== */

.person-content {
    min-width: 0;
}

.person-content h3 {
    margin: 0;

    color: #051f45;

    font-size: clamp(2rem, 2.5vw, 2.2rem);

    line-height: 1.1;

    font-weight: 700;
}

.person-credentials {
    margin: 8px 0 18px;

    color: #5a6178;

    font-size: 1rem;

    font-weight: 500;
}

.person-title {
    margin-bottom: 24px;

    color: #b18024;

    font-size: .95rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =====================================================
   BIO
===================================================== */

.person-bio {
    max-width: 36ch;
}

.person-bio p {
    margin: 0 0 20px;

    color: #5a6178;

    font-size: 1.1rem;

    line-height: 1.75;
}

.person-bio p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   HIGHLIGHTS
===================================================== */

.person-highlights {

    margin-top: 30px;
    padding-top: 30px;

    border-top: 1px solid #e6e9ef;

}

.person-highlights {

    list-style: none;

}

.person-highlights ul {

    list-style: none;

    margin: 0;
    padding: 0;

}

.person-highlights li {

    list-style: none;

    position: relative;

    padding-left: 30px;

    margin: 0 0 14px;

    color: #5a6178;

    font-size: 1.05rem;

    line-height: 1.7;

}

.person-highlights li:last-child {

    margin-bottom: 0;

}

.person-highlights li::before {

    content: "✓";

    position: absolute;

    left: 0;

    top: 0;

    color: #b18024;

    font-weight: 700;

}

/* =====================================================
   LINK
===================================================== */

.person-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 30px;

    color: #051f45;

    font-weight: 700;

    text-decoration: none;

    transition:
        color .25s ease,
        gap .25s ease;
}

.person-link:hover {
    color: #b18024;
    gap: 12px;
}


