.team-outerDiv_box {
    background-color: #FFF8F1;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-img {
    object-fit: contain;
    width: 165px;
    height: 176px;
}

.team-img_box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 217px;
    height: 217px;
    flex-shrink: 0;
    margin-top: 1rem;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.36px;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}


.team-button {
    padding: 0.5rem 1.5rem;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.32px;
    border-radius: 100px;
    margin-bottom: 1rem;
}

@media screen and (max-width: 576px) {
    .team-img {
        object-fit: contain;
        width: 125px;
        height: 135px;
    }

    .team-img_box {
        width: 150px;
        height: 150px;
    }

    .team-name {
        font-size: 16px;
        font-weight: 600;
        line-height: 19px;
        letter-spacing: 0.02em;
    }

    .team-button {
        padding: 0.25rem 1.25rem;
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0.02em;
    }
}