.team-list {
    background: #fff;
    border-radius: var(--b-radius--16);
    padding: 32px var(--sp-16-32);
    gap: var(--sp-16-32);
}
.team-list__box {
    display: flex;
    flex-direction: row;
    gap: 24px;
}
.team-list__box__img-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-width: 80px;
    height: 80px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}
.team-list__box:nth-child(5n+1) .team-list__box__img-holder {
    background: var(--violet-200);
    color: var(--violet-500);
}
.team-list__box:nth-child(5n+2) .team-list__box__img-holder {
    background: var(--blue-100);
    color: var(--blue-700);
}
.team-list__box:nth-child(5n+3) .team-list__box__img-holder {
    background: var(--orchid-100);
    color: var(--orchid-700);
}
.team-list__box:nth-child(5n+4) .team-list__box__img-holder {
    background: var(--green-100);
    color: var(--green-700);
}
.team-list__box:nth-child(5n+5) .team-list__box__img-holder {
    background: var(--orange-100);
    color: var(--orange-700);
}
.team-list__box__img {
    object-fit: cover;
    object-position: center;
}
.team-list__box__content,
.team-list__box__links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.team-list__box__role {
    color: var(--gray-500, #6B7280);
}
.team-list__box__title {
    font-weight: 500;
    margin-bottom: 4px;
}