Problem with layout: cards

Good morning, I would like the panel to not display all this in the form of a table. I need squares with a photo and link below. Will you help? I thought layout: cards would do it, but it doesn’t.

fields:
  realization:
    label: Realizacja
    type: structure
    layout: cards
    fields: 
      link:
        type: url
      image:
        type: files
        min: 1
        max: 1

Have a nice day!

If you have already defined a cover image, this code should work for image:

      image:
        query: page.cover.toFile
        ratio: 1/1
        cover: true
        min: 1
        max: 1

You cannot display a structure field as cards. If you want to have cards in the Panel, you would have to use subpages instead of a structure.

Okay, I understand. I will do this and maybe set a redirect from those subpages. Thank you.