.sftf-department-filter {
    margin-bottom: 2rem;
}

.sftf-filter-select {
    padding: 8px 16px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    min-width: 300px;
    font-size: 16px;
}

#sftf-members {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 2rem;
}

#sftf-members li {
    padding: 1rem;
    border-radius: .5rem;
    border: 1px solid #ccc;
}

.sftf-member__link {
    display: flex;
    gap: 1rem;
}

.sftf-member__name {
    font-size: 1.125rem;
    font-weight: bold;
    color: #333;
}

.sftf-member__avatar {
    overflow: hidden;
    border-radius: .5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sftf-member__avatar img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.sftf-member-profession,
.sftf-member-email{
    color: #333;
}

.sftf-member-profession {
    font-weight: 600;
    line-height: 1.25;
}