.member {
    width: 100%;
}

.member-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 10px;
}

.member-header > img {
    width: 32px;
}

.member-header > div {
    color: #4A4A4A;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.member-filters {
    display: flex;
    margin-bottom: 20px;
    height: 50px;
    border-top: 1px solid #DADADA;
    border-bottom: 1px solid #DADADA;
}

.member-filters > button {
    position: relative;
    height: 100%;
    padding: 0 16px;
}

.member-filters > button:first-child {
    padding: 0 30px;
}

.member-filters > button > div:first-child {
    color: #4A4A4A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.member-filters > button.active > div:first-child {
    font-weight: 700;
}

.member-filters > button.active > div:last-child {
    border: 2px solid #4A4A4A;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.members {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.members > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.members > div.hide {
    display: none;
}

.members > div > div:first-child {
    color: #4A4A4A;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.members > div > div:first-child.hide {
    display: none;
}

.members > div > div:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 22px;
    row-gap: 20px;
}

.lab-member-card {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    border: 1px solid #DADADA;
}

.lab-member-card > img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.lab-member-card__name {
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

.lab-member-card__department {
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 14px;
}

.lab-member-card__keywords {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 89px;
    margin-bottom: 30px;
}

.lab-member-card__keywords > div {
    padding: 2px 6px;
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    border-radius: 5px;
    background-color: #F3F3F3;
    width: fit-content;
}

.lab-member-card > a {
    border-radius: 5px;
    border: 1px solid #4A4A4A;
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    margin-top: auto;
}

.no-members {
    border-radius: 5px;
    border: 1px solid #DADADA;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-members.hide {
    display: none;
}

.no-members > div {
    display: flex;
    gap: 20px;
}

.no-members > div > img {
    width: 60px;
}

.no-members > div > div {
    padding: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.no-members > div > div > div:first-child {
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.no-members > div > div > div:last-child {
    color: #666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
