.dept-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.dept-card__favorite {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dept-card__avatar {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.dept-card__name {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dept-card__name a {
    font-weight: var(--people-font-weight-bold) !important;
    font-size: var(--people-font-size-ml) !important;
    width: 100%;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3em;
}

.dept-card__contact {
    width: 100%;
    height: 20px;
    margin-top: 20px;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dept-card__contact > div {
    display: flex;
    align-items: center;
}

.dept-card__contact mail-btn,
.dept-card__contact tel-btn,
.dept-card__contact fax-btn {
    display: flex;
    align-items: center;
}

.dept-card__breadcrumbs {
    width: 160px;
    height: 30px;
    margin-top: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dept-card__breadcrumbs a {
    width: 100%;
    color: var(--people-text-gray-slate) !important;
    font-size: var(--people-font-size-s) !important;
    cursor: default;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}