.team-member {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow: clip;
}

.team-member--image-left {
    flex-direction: row;
}

.team-member--image-right {
    flex-direction: row-reverse;
}

.team-member--image-top {
    flex-direction: column;
}

.team-member__image {
    flex: 0 0 auto;
    line-height: 0;
}

.team-member__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member__info {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
}

.team-member__name,
.team-member__title,
.team-member__location,
.team-member__bio {
    margin: 0;
}

.team-member__name {
    color: #111;
}

.team-member__title,
.team-member__location {
    color: #555;
}

.team-member__bio {
    color: #666;
    margin-top: 10px;
}

.team-member__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 0 0;
}

.team-member__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #111;
    text-decoration: none;
}

.team-member__social-link i {
    font-size: 1em;
}

.team-member__social-link svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.team-member__social-link:hover,
.team-member__social-link:focus {
    color: #111;
    text-decoration: none;
}

@media (max-width: 767px) {
    .team-member--image-left,
    .team-member--image-right {
        flex-direction: column;
    }
    .team-member--image-left div.team-member__image {
    width: 100%;
}


}

/* new */

.team-member--image-left .team-member__image {
	width: 30%;
}

.team-member--image-right .team-member__image {
    width: 30%;
}
.team-member__bio > p:last-child {
	margin-bottom: 0;
}
