.care-team-circle-wrap {
    display: flex;
    justify-content: center;
    padding: 0;
}

.care-team-circle {
    position: relative;
    width: min(92vw, 820px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

.care-team-ring {
    position: absolute;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.care-team-ring-outer {
    width: 64%;
    height: 64%;
    background: #d7e5e8;
}

.care-team-ring-middle {
    width: 42%;
    height: 42%;
    background: #e5ecef;
}

.care-team-ring-inner {
    width: 21%;
    height: 21%;
    background: #f3f5f6;
    z-index: 2;
}

.care-team-arc-text {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74%;
    height: 74%;
    transform: translate(-50%, -50%);
    overflow: visible;
    z-index: 3;
    pointer-events: none;
}

.care-team-arc-text text {
    fill: #4b4f54;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.care-team-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16%;
    height: 16%;
    z-index: 4;
}

.care-team-person-icon {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: 88%;
    aspect-ratio: 1 / 1;
}

.care-team-head {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 34%;
    height: 34%;
    background: #d97a38;
    border: 4px solid #b55a23;
    border-radius: 50%;
    z-index: 2;
}

.care-team-body {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    height: 48%;
    background: #d97a38;
    border: 4px solid #b55a23;
    border-radius: 999px 999px 22px 22px;
}

.care-team-you {
    position: absolute;
    left: 50%;
    bottom: -4%;
    transform: translateX(-50%);
    color: #006f8f;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.5vw, 1.35rem);
    line-height: 1;
    text-align: center;
}

.care-team-node {
    position: absolute;
    width: 21%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #006f8f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
    font-weight: 500;
    line-height: 1.2;
    font-size: clamp(0.8rem, 1vw, 1.1rem);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.care-team-node span {
    max-width: 100%;
}

.care-team-node-1 {
    top: 1%;
    left: 50%;
    transform: translateX(-50%);
}

.care-team-node-2 {
    top: 27%;
    right: 7%;
}

.care-team-node-3 {
    bottom: 6%;
    right: 19%;
}

.care-team-node-4 {
    bottom: 6%;
    left: 19%;
}

.care-team-node-5 {
    top: 27%;
    left: 7%;
}

@media (max-width: 900px) {
    .care-team-circle {
        width: min(96vw, 700px);
    }

    .care-team-node {
        width: 22%;
        font-size: clamp(0.76rem, 1.4vw, 1rem);
        padding: 0.9rem;
    }

    .care-team-arc-text text {
        font-size: 14px;
    }
}

@media (max-width: 680px) {
    .care-team-circle {
        width: min(96vw, 480px);
        aspect-ratio: 1 / 1;
        min-height: unset;
    }

    .care-team-node {
        width: 26%;
        font-size: clamp(0.65rem, 3vw, 0.85rem);
        padding: 0.6rem;
    }

    .care-team-arc-text text {
        font-size: 12px;
    }

    .care-team-you {
        bottom: -11%;
    }

    .care-team-center {
        top: 48%;
    }
}

@media (max-width: 420px) {
    .care-team-circle {
        width: 95vw;
        aspect-ratio: 1 / 1;
        min-height: unset;
    }

    .care-team-node {
        width: 27%;
        font-size: 0.65rem;
        padding: 0.5rem;
    }

    .care-team-arc-text text {
        font-size: 11px;
    }
}