team-view {
    display: block;
}

team-view>img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 32px;
}

team-view>h1 {
    color: #702A2A;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.56px;
    margin-bottom: 56px;
    margin-top: 0;
}

team-view>h2 {
    color: #702A2A;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.2px;
    margin-top: 0;
    margin-bottom: 24px;
    margin-left: 48px;
    margin-right: 48px;
}

team-view>p {
    color: #6E4A4A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.16px;
    margin-top: 0;
    margin-bottom: 56px;
    margin-left: 48px;
    margin-right: 48px;
}

team-view .team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    box-sizing: border-box;
    padding-top: 48px;
    padding-bottom: 48px;
}

team-view .team-member {
    text-decoration: none;
}

team-view .team-member img {
    width: 192px;
    height: 192px;
    aspect-ratio: 1/1;
    margin-bottom: 32px;
    display: block;
}

team-view .team-member h3 {
    color: #702A2A;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    margin-bottom: 7px;
    margin-top: 0;
}

team-view .team-member p {
    color: #6E4A4A;
    font-family: Judson;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

team-view>a {
    display: block;
    text-decoration: none;
    width: fit-content;
    margin: 0 auto 56px auto;
}

team-view>a>button {
    border: 1px solid #702A2A;
    background: transparent;
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    color: #702A2A;
    text-align: center;
    font-family: Judson;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    gap: 12px;
}

team-view>a>button::after {
    content: '→';
    font-size: 24px;
}

team-view>a>button:hover {
    background-color: #DFD0CC;
    color: #702A2A;
    cursor: pointer;
}