Custom:mushroom-template-card primary text size

Witam.
Mam problem z formatowaniem wielkości textu. Któraś z aktualizacja chyba 2024.02 ją popsuła. Potrzebne mi bardzo duże litery w polach primary w custom:mushroom-template-card. Dane są wyświetlane na ekranie i muszą być widoczne z daleka. Obecnie jakby jest ucinana wielkość do 28 px. Jak potrzebuje 40 px. Załączam fragment kodu CSS. Czy używam złych opcji formatowania dla CSS czy może trzeba użyć innej karty niż mushroom. Bardzo mi ona odpowiada wiec nie chciałbym jej zmieniać

type: custom:stack-in-card
cards:
  - type: custom:mushroom-template-card
    primary: '{{ states("sensor.salon_balkon_temp_hum_temperature") | round(1)}}°C'
    secondary: null
    icon: mdi:balcony
    icon_color: green
    badge_icon: >-
      {% set bl = states('sensor.salon_balkon_temp_hum_temperature') | round(0)
      %}
      {% if bl < 0 %} 
        mdi:snowflake
      {% elif bl > 25 %}
        mdi:sun-thermometer-outline
      {% endif %}
    badge_color: red
    tap_action:
      action: none
    fill_container: true
    layout: horizontal
    multiline_secondary: false
    card_mod:
      style: |
        ha-card {           
            {% set bl = states('sensor.salon_balkon_temp_hum_temperature') | round(0) %}
            {% if bl < 0 %} --primary-text-color: red;
            {% elif bl < 7 %} --primary-text-color: orange;
            {% elif bl > 25 %} --primary-text-color: orange; 
            {% elif bl > 30 %} --primary-text-color: red; 
            {% else %} --primary-text-color: white;  
            {% endif %}
            --card-primary-font-size: 29px;
            height: 70px;
            margin-top: 0px !important;
            margin-left: 0px !important;
            --mush-icon-size: 50px;
        }

image

Też się chętnie dowiem.