Vertical stack with 2 line (line one is actions and line 2 is name)

Hi fellas, I am trying to design my dashboard with a third party plugin (numberbox-card) but I am stick getting 2 lines for a single entity. Line 1 should be the actions like + - for the entity and the line 2 should be the name of the entity. But unfortunately I am failing. Can someone please help me out? I am open for suggestions and other options too.

square: true
type: grid
cards:
  - type: vertical-stack
    cards:
      - show_name: true
        show_icon: true
        type: button
        tap_action:
          action: toggle
        entity: input_boolean.motion_sensor_active_bathroom
        show_state: true
      - type: conditional
        conditions:
          - condition: state
            entity: input_boolean.motion_sensor_active_bathroom
            state: 'on'
        card:
          type: entities
          entities:
            - type: custom:numberbox-card
              icon: mdi:clock-fast
              border: true
              name: Delay
              entity: input_number.motion_automation_turn_off_delay_bathroom
            - type: custom:numberbox-card
              icon: mdi:brightness-6
              border: true
              name: Illuminace
              entity: input_number.motion_automation_illuminance_limit_bathroom
  - type: vertical-stack
    cards:
      - show_name: true
        show_icon: true
        type: button
        tap_action:
          action: toggle
        entity: input_boolean.motion_sensor_active_bedroom
        show_state: true
      - type: conditional
        conditions:
          - condition: state
            entity: input_boolean.motion_sensor_active_bedroom
            state: 'on'
        card:
          type: entities
          entities:
            - type: custom:numberbox-card
              icon: mdi:clock-fast
              border: true
              name: Delay
              entity: input_number.motion_automation_turn_off_delay_bedroom
            - type: custom:numberbox-card
              icon: mdi:brightness-6
              border: true
              name: Illuminace
              entity: input_number.motion_automation_illuminance_limit_bedroom
  - type: vertical-stack
    cards:
      - show_name: true
        show_icon: true
        type: button
        tap_action:
          action: toggle
        entity: input_boolean.motion_sensor_active_living_room
        show_state: true
      - type: conditional
        conditions:
          - condition: state
            entity: input_boolean.motion_sensor_active_living_room
            state: 'on'
        card:
          type: entities
          entities:
            - type: custom:numberbox-card
              icon: mdi:clock-fast
              border: true
              name: Delay
              entity: input_number.motion_automation_turn_off_delay_living_room
            - type: custom:numberbox-card
              icon: mdi:brightness-6
              border: true
              name: Illuminace
              entity: input_number.motion_automation_illuminance_limit_living_room
  - type: vertical-stack
    cards:
      - show_name: true
        show_icon: true
        type: button
        tap_action:
          action: toggle
        entity: input_boolean.motion_sensor_active_kitchen
        show_state: true
      - type: conditional
        conditions:
          - condition: state
            entity: input_boolean.motion_sensor_active_kitchen
            state: 'on'
        card:
          type: entities
          entities:
            - type: custom:numberbox-card
              icon: mdi:clock-fast
              border: true
              name: Delay
              entity: input_number.motion_automation_turn_off_delay_kitchen
            - type: custom:numberbox-card
              icon: mdi:brightness-6
              border: true
              name: Illuminace
              entity: input_number.motion_automation_illuminance_limit_kitchen
  - type: vertical-stack
    cards:
      - show_name: true
        show_icon: true
        type: button
        tap_action:
          action: toggle
        entity: input_boolean.motion_sensor_active_office_room
        show_state: true
      - type: conditional
        conditions:
          - condition: state
            entity: input_boolean.motion_sensor_active_office_room
            state: 'on'
        card:
          type: entities
          entities:
            - type: custom:numberbox-card
              icon: mdi:clock-fast
              border: true
              name: Delay
              entity: input_number.motion_automation_turn_off_delay_office_room
            - type: custom:numberbox-card
              icon: mdi:brightness-6
              border: true
              name: Illuminace
              entity: input_number.motion_automation_illuminance_limit_office_room
columns: 2