Multiple conditional cards in sections view footer

I want to use 2 conditional cards in the footer of the Sections view dashboard.
By using the “Visibility” setting in the card, I would like to show each card to a particular set of users. That appears to be impossible because the footer only allows for 1 card.

In practice, however, only 1 card would actually show because of the “Visibility” settings.

Can anyone think of a solution/workaround/trick to accomplish this?

Thanks in advance.

Rudi

Do you want to have two different cards, or different versions of the same card?

If the latter, you might be able to do something with card-mod, which allows you to add css styles conditionally

For example, to change background colour of a tile:

        card_mod:
          style: |
            ha-card { 
              {% if is_state('light.all_kitchen_lights', 'on') %}
              --ha-card-background: #364366;
            {% endif %} 
              }   

Edit: Alternatively, you could make the single footer card a horizontal stack and put two cards inside it. As I remember, if you do this you need to use two conditional cards, not visibility, which will make the whole stack appear and disappear.