.wd-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-end;
}
.wd-filter-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.wd-filter-group select,
.wd-filter-group input[type="search"] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
.wd-filter-search input[type="search"] {
    min-width: 220px;
}
.wd-alpha-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.wd-alpha-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 3px 8px;
    line-height: 1.4;
}
.wd-alpha-btn:hover,
.wd-alpha-btn.active {
    background: #333;
    border-color: #333;
    color: #fff;
}
.wd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
}
.wd-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.wd-card.hidden { display: none; }
.wd-card-photo img,
.wd-card-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #eee;
    display: block;
}
.wd-card-body { padding: 0.75rem 1rem; }
.wd-card-name {
    font-weight: 700;
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
}
.wd-card-creds {
    margin: 0 0 0.1rem;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}
.wd-card-title { margin: 0 0 0.2rem; font-size: 1.2rem; color: #444; }
.wd-card-dept  { margin: 0.2rem 0; font-size: 1.2rem; color: #777; }
.wd-card-phone { margin: 0 0 0.2rem; font-size: 1.1rem; color: #555; }
.wd-card-email { margin: 0; font-size: 1.1rem; }
.wd-card-email a { color: inherit; }
