Tile Card - Multiple Feature Button position

I’m using the following code for a tile card that will have 3 buttons using features → buttons

            - type: tile
              entity: "script.light_controls"
              hide_state: true
              icon: "mdi:lightbulb"
              icon_tap_action:
                action: "none"
              features:
                - type: "button"
                  action_name: "Boost"
                  data:
                    entity: "light.group_kitchen_lights"
                    action: "boost"
                - type: "button"
                  action_name: "Normal"
                  data:
                    entity: "light.group_kitchen_lights"
                    action: "normal"
                - type: "button"
                  action_name: "Off"
                  data:
                    entity: "light.group_kitchen_lights"
                    action: "off"
              name: "Kitchen"
              tap_action:
                action: "none"
              vertical: true

This works, but created the buttons vertically as you’ll see in the screenshot for the card ‘Kitchen’

Ideally though, the buttons would be horizontally like they are in the vacuum card have, which is why I included them in the screenshot

Has anyone managed to do this?

Ideally I’d like to keep with using the tile card for future compatibility

I manage to do this but using custom feature from HACS:

There is not (yet?) the possibility in core to do a row of buttons.