/*
  Project template - page-specific rules only.
  Load AFTER template-base.css.
*/

.stamp {
    display: inline-block;
    transform: rotate(-2deg);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: .85vw;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .25rem .8rem;
    border-radius: var(--radius-sm);
    margin: 0 0 1% 0;
}

#team-list {
    width: 70%;
    margin: 0 0 5% 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.team-member {
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    background-color: var(--card);
    box-shadow: var(--shadow-off) var(--shadow-off) 0 var(--line);
    padding: 1.2rem 1rem;
    text-align: center;
}

.team-member h3 {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.05vw;
    margin: 0 0 .6rem 0;
}

.team-member .role {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .8vw;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--accent-ink);
    background-color: var(--accent);
    padding: .2rem .6rem;
    border-radius: var(--radius-sm);
}

@media (max-width: 900px) {
    .stamp {
        font-size: 3vw;
    }

    #team-list {
        width: 92%;
    }

    .team-member h3 {
        font-size: 4vw;
    }

    .team-member .role {
        font-size: 3vw;
    }
}
