.team-page {
    width: min(1000px, calc(100% - 40px));
    margin: 0 auto;
    padding: 88px 0 110px;
}

.team-heading {
    max-width: 700px;
    margin-bottom: 48px;
}

.team-heading h1 {
    max-width: 650px;
    margin: 10px 0 16px;
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    line-height: .96;
    letter-spacing: -0.055em;
}

.team-heading p {
    max-width: 580px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.08rem;
}

.team-profile {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 44px;
    align-items: center;
    padding: 42px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(230, 57, 70, .22), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.profile-mark {
    display: grid;
    place-items: center;
    width: 210px;
    height: 210px;
    color: #fff;
    background: linear-gradient(145deg, var(--accent), #f5c542);
    border-radius: 30% 70% 58% 42% / 38% 34% 66% 62%;
    box-shadow: 0 24px 55px rgba(230, 57, 70, .24);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    transform: rotate(-6deg);
}

.profile-copy {
    max-width: 600px;
}

.profile-label,
.eyebrow {
    color: var(--accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.profile-copy h2 {
    margin: 8px 0 12px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.profile-copy p {
    color: var(--text-secondary);
}

.profile-intro {
    max-width: 540px;
    margin: 0 0 22px;
    font-size: 1.08rem;
}

.role-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.role-list span {
    padding: 7px 11px;
    color: var(--text);
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
}

.team-note {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    max-width: 700px;
    margin: 28px 0 0;
    padding: 25px 0 0;
    border-top: 1px solid var(--border);
}

.team-note-icon {
    color: #f5c542;
    font-size: 1.5rem;
    line-height: 1.4;
}

.team-note h2 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.team-note p {
    margin: 0;
    color: var(--text-secondary);
}

@media (max-width: 700px) {
    .team-page {
        width: calc(100% - 30px);
        padding: 62px 0 80px;
    }

    .team-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 28px;
    }

    .profile-mark {
        width: 145px;
        height: 145px;
        font-size: 4.2rem;
    }
}
