I recently noticed a design bug on your website.
-

There is a button design bug on the website. The button layout appears broken or misaligned.
The blog I need help with is: (visible only to logged in users)
-
This ‘broken’ layout usually happens when the content above the buttons (like headlines or descriptions) has varying lengths, pushing the buttons to different vertical positions. In WordPress, especially with block themes, the cleanest fix is to wrap the column content in a Group block and set the ‘Inner blocks use content width’ or ‘Justification’ settings to ‘Space between’. If that’s not an option, adding a small bit of custom CSS like display: flex; flex-direction: column; justify-content: space-between; to the column container will force the buttons to align perfectly along the bottom edge, regardless of how much text is above them.