.team-member-editor {
    display: flex;
    flex-direction: row;
}

.team-member-editor__img {
    width: 150px;
    margin-right: 30px;
    background-color: #eee;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-editor__text {
    align-self: center;
}

.team-member-editor__name {
    font-weight: bold;
}

.team-member-editor .image-ctr {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member {
    width: min(100%, 900px);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.team-member__img img {
    width: 200px;
    height: 200px;
    min-width: 200px;
    border: 3px solid #FFB800;
}

.team-member__text {}

@media screen and (max-width: 576px) {
    .team-member {
        flex-direction: column;
        gap: 0px;
    }
    .team-member__img {
        margin-bottom: 20px;
    }
    .team-member__img img {
        margin-right: 0;
    }
    .team-member__text {
        width: min(100%, 400px);
        text-align: center;
    }
}