/* PHPC meet-team block — PR 2.5 (HANDOFF §2.5)
   Mobile-first: 1col → 2-up @756px → 3-up @992px. Image aspect ratio 1 / 1.1. */

.meet-team--section {
    padding: 60px 0;
    background: var(--paper);
    color: var(--ink);
    overflow: hidden;
}

@media (min-width: 992px) {
    .meet-team--section {
        padding: 120px 0;
    }
}

.meet-team--section-label {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.1;
    letter-spacing: var(--track-tight-2);
    margin: 0 0 48px;
    max-width: 24ch;
    text-wrap: balance;
    color: var(--ink);
}

.meet-team--section-label i {
    color: var(--signal);
    font-style: italic;
    font-weight: inherit;
}

@media (min-width: 992px) {
    .meet-team--section-label {
        margin: 0 0 64px;
    }
}

/* ---------- Grid ---------- */
.meet-team--items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 756px) {
    .meet-team--items {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }
}

@media (min-width: 992px) {
    .meet-team--items {
        grid-template-columns: repeat(3, 1fr);
        gap: 56px 32px;
    }
}

/* ---------- Item ---------- */
.meet-team--item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Text block: image + title + role + copy stack with natural margins */
.meet-team--text {
    /* normal flow */
}

.meet-team--link-overlay {
    display: block;
    text-decoration: none;
    color: inherit;
}

.meet-team--image {
    position: relative;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    background: var(--cream-deep);
    margin: 0 0 20px;
    max-width: none;
}

.meet-team--image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease-editorial);
}

.meet-team--item:hover .meet-team--image img {
    transform: scale(1.03);
}

.meet-team--title {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.15;
    letter-spacing: var(--track-tight-2);
    margin: 0 0 6px;
    color: var(--ink);
}

.meet-team--title i {
    color: var(--signal);
    font-style: italic;
    font-weight: inherit;
}

.meet-team--role {
    font-family: var(--ff-sans);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: var(--track-eyebrow);
    text-transform: uppercase;
    color: var(--signal);
    margin: 0 0 14px;
}

.meet-team--copy {
    font-family: var(--ff-sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--fg-1);
    max-width: 46ch;
    margin: 0;
}

.meet-team--copy p {
    margin: 0 0 0.9em;
}

.meet-team--copy p:last-child {
    margin-bottom: 0;
}

.meet-team--copy i,
.meet-team--copy em {
    color: var(--signal);
    font-style: italic;
}

/* CTA pinned to bottom of card via parent's space-between (min 20px from copy) */
.meet-team--cta {
    margin-top: 20px;
}
