.census-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
    padding: 20px 0;
}

.npc-card {
    background: #2a2a2a; /* Dark card */
    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.npc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.npc-header i {
    font-size: 1.5rem;
    color: #88c0d0; /* Sanctuary Blue */
}

.npc-bio {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 80px; /* Keeps cards uniform height */
}

.npc-meta .badge {
    background: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #aaa;
    margin-right: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.npc-link-btn {
    background: #88c0d0;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    float: right; /* Pushes it to the right corner */
    transition: background 0.2s;
}
.npc-link-btn:hover {
    background: #81a1c1;
}