/* Componente de perfil de usuario */
.user-profile {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    gap: 13px;
    text-align: end;
}

.user-profile__avatar {
    flex-shrink: 0;
}

.user-profile__image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-profile__name {
    font-family: var(--font-family-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #111827;
    margin: 0;
}

.user-profile__position {
    font-family: var(--font-family-secondary);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    margin: 0;
    color: var(--text-gray);
}
