.public-team-profile-page {
    min-height: 60vh;
}

.team-profile-hero {
    padding-bottom: 2.5rem;
}

.team-profile-breadcrumb {
    margin-bottom: 1.5rem;
}

.team-profile-breadcrumb a {
    text-decoration: none;
    font-weight: 700;
}

.team-profile-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 2rem;
    align-items: end;
}

.team-profile-hero h1 {
    margin: .45rem 0 .5rem;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    letter-spacing: -.045em;
}

.team-profile-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.25rem;
}

.team-profile-trust span,
.team-profile-sample-card em {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border-radius: 999px;
    padding: .5rem .75rem;
    background: rgba(255, 255, 255, .08);
    font-style: normal;
    font-size: .82rem;
}

.team-profile-sample-card {
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, .055);
    display: grid;
    gap: .35rem;
}

.team-profile-sample-card > span {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.team-profile-sample-card > strong {
    font-size: 2.9rem;
    line-height: 1;
}

.team-profile-sample-card em {
    width: fit-content;
    margin-top: .55rem;
}

.team-profile-section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.team-profile-section-head span {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.team-profile-section-head h2 {
    margin: .25rem 0 .45rem;
}

.team-profile-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.team-profile-metric-grid article,
.team-profile-split-card {
    border: 1px solid rgba(130, 150, 180, .18);
    border-radius: 1.15rem;
    padding: 1.2rem;
    background: rgba(120, 140, 165, .055);
}

.team-profile-metric-grid article {
    display: grid;
    gap: .35rem;
}

.team-profile-metric-grid span,
.team-profile-metric-grid small {
    font-size: .82rem;
}

.team-profile-metric-grid strong {
    font-size: 2rem;
}

.team-profile-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.team-profile-split-card header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.team-profile-split-card header span {
    font-weight: 800;
}

.team-profile-split-card dl {
    margin: 0;
    display: grid;
    gap: .7rem;
}

.team-profile-split-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: .7rem;
    border-top: 1px solid rgba(130, 150, 180, .14);
}

.team-profile-split-card dt {
    font-weight: 500;
}

.team-profile-split-card dd {
    margin: 0;
    font-weight: 800;
}

.team-profile-note {
    display: flex;
    gap: .85rem;
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(120, 140, 165, .07);
}

.team-profile-note p {
    margin: .25rem 0 0;
}

.team-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}

.team-profile-state {
    text-align: center;
    padding-block: clamp(4rem, 10vw, 8rem);
}

.team-profile-state > .container > i {
    font-size: 2.4rem;
    display: block;
    margin-bottom: .75rem;
}

.team-profile-state h1 {
    margin: .35rem 0 .65rem;
}

@media (max-width: 900px) {
    .team-profile-hero-grid,
    .team-profile-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-profile-hero-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .team-profile-hero-grid,
    .team-profile-metric-grid,
    .team-profile-split-grid {
        grid-template-columns: 1fr;
    }

    .team-profile-metric-grid strong {
        font-size: 1.7rem;
    }
}
