.list__members {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    list-style: none;
}

@media screen and (min-width: 700px) {
    .list__members {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: start;
        justify-content: space-around;
        gap: 20px;
    }
}

.list__members .list__item {
    margin-bottom: 40px;
    width: 100%;
    max-width: 435px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    text-align: center;
}

.list__members .list__item .member__photo {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.list__members .list__item .member__name {
    font-size: 20px;
    font-weight: 500;
    color: #2d68c4;
}

.list__members .list__item .member__role {
    font-size: 16px;
    font-weight: 500;
    color: #5f5f63;
}

.list__members .list__item .member__name,
.list__members .list__item .member__role {
    transition: color 0.3s linear;
}

.list__members .list__item:hover .member__name {
    color: #0b2240;
}

.list__members .list__item:hover .member__role {
    color: #d0002c;
}