Fields and Colums in page blueprint are not aligned in panel

title: BlueprintA

columns:

  top:
    width: 1/1
    sections:
      one:
        type: fields
        fields:
          name:
            label: Name
            type: text
            width: 1/3
          description:
            label: Description
            type: text
            width: 1/3
          email:
            label: Email
            type: email
            width: 1/3

  left:
    width: 2/3
    sections:
      two:
        type: fields
        fields:
          content:
            label: Content
            type: blocks

  right:
    width: 1/3
    sections:
      three:
        type: fields
        fields:
          www:
            label: Website
            type: url
            width: 1/1

So this is a page blueprint but somehow in the panel the 1/3 fields are not aligned with the 2/3 and 1/3 colums. Am I doing something wrong here or is this how it should be? Thanks.

There is no need for the columns, the reason is the gap between the two columns:

title: BlueprintA


fields:
  name:
    label: Name
    type: text
    width: 1/3
  description:
    label: Description
    type: text
    width: 1/3
  email:
    label: Email
    type: email
    width: 1/3
  content:
    label: Content
    type: blocks
    width: 2/3
  www:
    label: Website
    type: url
    width: 1/3

There is a need for the columns as I simplified the blueprint to ask the question. It’s actually way more complex with image and pdf files in the right column who I have to group somehow. So there is no way to do this without columns, right?