.team-hero {
    padding: 12px 0 22px;
}

.team-hero__card {
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center;
    min-height: 490px;
    overflow: hidden;
    padding: 42px 30px 32px 55px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 10% 15%, rgba(158, 132, 216, 0.11), transparent 24%),
        linear-gradient(135deg, #f0f8fb, #f4f0fb);
}

.team-hero__card p:not(.eyebrow) {
    max-width: 480px;
    margin-bottom: 18px;
    font-size: 1.03rem;
}

.team-hero__card .team-hero__note {
    color: var(--muted);
    font-size: 0.9rem;
}

.team-hero__visual {
    position: relative;
    align-self: stretch;
    min-width: 0;
}

.team-hero__visual > img {
    width: 100%;
    height: 100%;
    max-height: 455px;
    object-fit: contain;
}

.team-hero__label {
    position: absolute;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(31, 37, 51, 0.1);
    font-size: 0.76rem;
    font-weight: 800;
    backdrop-filter: blur(7px);
}

.team-hero__label--one {
    top: 15%;
    left: 5%;
    color: #7354b7;
}

.team-hero__label--two {
    top: 23%;
    right: 2%;
    color: var(--teal-dark);
}

.team-hero__label--three {
    right: 9%;
    bottom: 12%;
    color: #d8612d;
}

.team-message {
    padding-bottom: 22px;
}

.team-message__card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
    gap: 45px;
    align-items: center;
    min-height: 330px;
    padding: 42px 55px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 45%, rgba(255, 255, 255, 0.7), transparent 32%),
        linear-gradient(135deg, #fff7ef, #f6f2fb);
}

.team-message__content h2 {
    max-width: 680px;
    margin-bottom: 18px;
}

.team-message__content > p:last-child {
    max-width: 700px;
    margin: 0;
    color: #485264;
}

.team-message__focus {
    position: relative;
    width: 350px;
    height: 290px;
    justify-self: center;
}

.team-message__center,
.team-message__orbit {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 800;
}

.team-message__center {
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    width: 116px;
    height: 116px;
    padding: 14px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 12px 32px rgba(31, 37, 51, 0.1);
    text-align: center;
    transform: translate(-50%, -50%);
}

.team-message__center img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.team-message__center strong {
    line-height: 1.15;
    font-size: 0.72rem;
}

.team-message__orbit {
    z-index: 2;
    width: 82px;
    height: 82px;
    border: 5px solid rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    box-shadow: 0 8px 22px rgba(31, 37, 51, 0.08);
}

.team-message__orbit--child {
    top: 34px;
    left: 18.7%;
    color: #087f84;
    background: #dff5f4;
    transform: translateX(-50%);
}

.team-message__orbit--family {
    top: 34px;
    right: 18.7%;
    color: #7354b7;
    background: #eee8fb;
    transform: translateX(50%);
}

.team-message__orbit--team {
    bottom: 4px;
    left: 50%;
    color: #b75225;
    background: #ffeadf;
    transform: translateX(-50%);
}

.team-message__focus::before,
.team-message__focus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 255px;
    height: 170px;
    border: 1px dashed rgba(115, 84, 183, 0.28);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.team-message__focus::after {
    width: calc(100% - 40px);
    height: 200px;
    border-color: rgba(17, 153, 158, 0.2);
}

.team-expertise {
    padding: 16px 0 28px;
}

.team-section-heading {
    margin-bottom: 30px;
}

.team-section-heading h2 {
    margin-bottom: 12px;
}

.team-expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.team-expertise__card {
    position: relative;
    min-height: 235px;
    overflow: hidden;
    padding: 28px 25px 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 7px 24px rgba(31, 37, 51, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-expertise__card::after {
    position: absolute;
    right: -28px;
    bottom: -42px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: currentColor;
    content: "";
    opacity: 0.07;
}

.team-expertise__card:hover {
    box-shadow: 0 14px 35px rgba(31, 37, 51, 0.1);
    transform: translateY(-5px);
}

.team-expertise__icon {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: currentColor;
}

.team-expertise__icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.team-expertise__card h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.05rem;
}

.team-expertise__card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.team-expertise__card--purple { color: #eee9fa; }
.team-expertise__card--olive { color: #f0f4df; }
.team-expertise__card--teal { color: #e2f6f5; }
.team-expertise__card--orange { color: #fff0e6; }
.team-expertise__card--blue { color: #e7f3fb; }
.team-expertise__card--coral { color: #fff0ec; }

.team-partnership {
    padding-bottom: 24px;
}

.team-partnership__card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: 48px 230px;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.92), transparent 48%),
        linear-gradient(135deg, #eff8fb, #f5f1fb);
    text-align: center;
}

.team-partnership__content {
    position: relative;
    z-index: 2;
}

.team-partnership__content h2 {
    margin-bottom: 14px;
}

.team-partnership__content > p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto 22px;
    color: var(--muted);
}

.team-partnership__principles {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
    margin-bottom: 25px;
}

.team-partnership__principles span {
    padding: 8px 14px;
    border: 1px solid rgba(17, 153, 158, 0.16);
    border-radius: 999px;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
}

.team-partnership__decor {
    position: absolute;
    z-index: 1;
    object-fit: contain;
}

.team-partnership__decor--left {
    bottom: -25px;
    left: 20px;
    width: 195px;
    max-height: 300px;
}

.team-partnership__decor--right {
    right: -10px;
    bottom: -35px;
    width: 235px;
    max-height: 270px;
}

@media (max-width: 900px) {
    .team-hero__visual {
        min-height: 410px;
    }

    .team-message__card {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .team-message__content > p:last-child {
        margin-inline: auto;
    }

    .team-expertise__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-partnership__card {
        padding-inline: 145px;
    }

    .team-partnership__decor--left,
    .team-partnership__decor--right {
        width: 150px;
    }
}

@media (max-width: 680px) {
    .team-hero__card {
        padding: 30px 22px 0;
    }

    .team-hero__visual {
        min-height: 330px;
    }

    .team-hero__label {
        padding: 7px 10px;
        font-size: 0.65rem;
    }

    .team-message__card {
        padding: 32px 20px;
    }

    .team-message__focus {
        width: 330px;
        max-width: 100%;
    }

    .team-expertise__grid {
        grid-template-columns: 1fr;
    }

    .team-expertise__card {
        min-height: 0;
    }

    .team-partnership__card {
        padding: 38px 20px 180px;
    }

    .team-partnership__decor--left {
        bottom: -20px;
        left: -15px;
        width: 125px;
    }

    .team-partnership__decor--right {
        right: -15px;
        bottom: -20px;
        width: 155px;
    }
}
