Don't "neutralise" focusable elements

role="presentation" removes the native role, aria-hidden="true" completely hides the element (user focuses on "nothing").

<button role="presentation">Test</button>

<button aria-hidden="true">Test</button>

<div aria-hidden="true">
  <button>Test</button>
</div>