user-mobile {
    display: block;
    width: 100%;
    height: 80px;
}

.user-mobile__card {
    display: flex;
    padding: 5px 15px;
    border-bottom: 1px solid var(--people-border-gray);
    background: var(--people-color-white);
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.user-mobile__left {
    flex: 0 0 auto;
    margin-right: 15px;
}

.user-mobile__center {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    padding-top: 0;
}

.user-mobile__name {
    font-weight: bold;
    font-size: var(--people-font-size-ml);
    color: var(--people-text-color);
    margin-bottom: 5px;
    cursor: pointer;
}

.user-mobile__dept {
    font-size: var(--people-font-size-micro);
    color: var(--people-text-color);
    margin-bottom: 5px;
    cursor: pointer;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.user-mobile__job_title {
    font-size: var(--people-font-size-micro);
    color: var(--people-text-gray) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-mobile__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    min-width: 110px;
}

.user-mobile__actions {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--people-text-gray);
    margin-right: 2px;
}

.user-mobile__actions img {
    width: 20px;
    height: 20px;
}

.user-mobile__favorite {
    margin-top: auto;
}

.user-mobile__favorite img {
    width: 20px;
    height: 20px;
}