.about-us-header {
    font-size: 3rem;
    font-weight: 700;
}

.about-us-paragraph, .about-us-list, .about-us-list-item:not(:first-child) {
    margin-top: 1rem;
}

.about-us-list {
    list-style: disc;
    padding-left: 1rem;
    margin-left: 1rem;
}

.about-us-small-header {
    margin-top: 2rem;
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
}

.about-us-team-wrapper {
    display: flex;
    justify-content: space-around;
    margin-top: 24px;
    flex-wrap: wrap;
}

.team-member {
    border-radius: 5px;
    border: 1px solid rgb(204, 204, 204);
    width: 250px;
    height: 325px;
    margin-top: 8px
}

.team-member-image {
    width: 250px;
    height: 250px;
}

.team-member-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: calc(100% - 250px);
}

.team-member-text {
    padding: 0 0.5rem;
    width: 80%;
}

.team-member-name {
    font-weight: 700;
    font-size: 1.125rem;
}

.team-member-role {
    color: rgb(153, 153, 153);
    margin-left: 0.5rem;
    font-size: 0.875rem;
}