.team {
    margin-bottom : 100px;
    background-color: #ffffff;
}

.team-member-row {
    padding: 18px 0;
    border-bottom: 1px solid #dfe3e8;
}

.team .row > .col-12:last-child .team-member-row {
    border-bottom: none;
}

.team-member-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.team-member-image {
    display: block;
    width: 100%;
    height: 300px;
    border-radius: 2px;
    object-fit: cover;
    object-position: top;
}

.team-member-content {
    padding-left: 28px;
}

.team-member-content-alternate {
    padding-right: 28px;
    padding-left: 0;
}

.team-member-name {
    margin: 0 0 4px;
    color: #17233a;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
}

.team-member-role {
    margin: 0;
    color: #f5a000;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.team-member-accent-line {
    display: block;
    width: 46px;
    height: 2px;
    margin: 12px 0 16px;
    background-color: #f5a000;
}

.team-member-description {
    margin: 0;
    color: #343d4d;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}


/* Tablet */
@media (max-width: 991.98px) {
    .team {
        padding: 60px 0;
    }

    .team-member-row {
        padding: 30px 0;
    }

    .team-member-image {
        height: 320px;
    }

    .team-member-content,
    .team-member-content-alternate {
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
}


/* Mobile */
@media (max-width: 575.98px) {
    .team {
        padding: 40px 0;
    }

    .team-member-row {
        padding: 24px 0;
    }


    .team-member-name {
        font-size: 24px;
    }

    .team-member-role {
        font-size: 16px;
    }

    .team-member-description {
        font-size: 14px;
        line-height: 1.65;
    }
}