.container {
    max-width: 1100px;
    margin: 1.25rem auto;
    padding: 0 1rem;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.header {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1rem;
    align-items: stretch;
}

.title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.controls {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: .5rem;
    flex-wrap: wrap;
}

.search {
    padding: .5rem .75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    min-width: 260px;
}

.person-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-top: 1rem;
}

@media (max-width: 920px) {
    .person-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .person-grid {
        grid-template-columns: 1fr;
    }
}


.person-meta {
    font-size: .95rem;
}

    .person-meta .role {
        font-size: .85rem;
        color: #6b7280;
        margin-top: .25rem;
    }

/* empty state */
.empty {
    padding: 1rem;
    text-align: center;
    color: #6b7280;
}
