.team-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: end;
    padding-block: 80px 72px;
}
.team-intro h1 { margin-bottom: 0; }
.team-section { padding-block: 56px 72px; }
.team-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 36px;
}
.team-section-heading h2 { margin-bottom: 0; }
.team-section-heading > p {
    max-width: 440px;
    margin-bottom: 0;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.8;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.team-person {
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--home-border);
    border-radius: 4px;
    background: #fff;
    min-width: 0;
}
.team-person-heading {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}
.team-person-heading img {
    width: 120px;
    height: 144px;
    object-fit: cover;
    object-position: center top;
    border-radius: 3px;
}
.landing-page .team-person h3 {
    font-size: 26px;
    letter-spacing: -.6px;
    line-height: 1.25;
    margin-bottom: 12px;
}
.team-role {
    color: var(--home-accent);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 8px;
}
.team-location {
    color: var(--home-muted);
    font-size: 12px;
    margin-bottom: 0;
}
.team-bio {
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 28px;
}
.team-person-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--home-border);
}
.team-person-links a,
.team-email {
    font-size: 13px;
    font-weight: 600;
    color: var(--home-ink);
    overflow-wrap: anywhere;
}
.team-person-links a { text-decoration: none; }
.team-person-links a:hover { text-decoration: underline; }
.team-email { flex-basis: 100%; }
.team-advisors { background: var(--home-surface); }
.team-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    padding-block: 64px;
}
.team-contact > div { max-width: 720px; }
.team-contact p:not(.home-eyebrow) {
    color: #d0d4d8;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}
.team-contact .home-button { flex-shrink: 0; }
@media (max-width: 1100px) {
    .team-person-heading { grid-template-columns: 1fr; }
    .team-intro { gap: 36px; }
}
@media (max-width: 767px) {
    .team-intro,
    .team-grid { grid-template-columns: 1fr; }
    .team-intro { padding-block: 48px; }
    .team-section { padding-block: 40px 48px; }
    .team-person { padding: 24px; }
    .team-section-heading,
    .team-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .team-contact { padding-block: 48px; }
}
