Can anyone help me remove these unwanted indentations in my grid layout without using JavaScript? I've tried using grid-auto-flow: column, but it's not working as expected. Here is a picture illustrating the issue, and here is what I am trying to achieve.
<nav class="header__submenu" id="header__submenu-resources" data-opened="1">
<ul class="header__submenu-list" id="header__submenu-list-resources">
<li class="header__submenu-item">
<a href="#" class="header__submenu-link">
Webinars
<p class="header__submenu-description">Get to know Tines and our use cases, live and on-demand.</p>
</a>
</li>
<!-- More list items here -->
</ul>
</nav>
If you want to see the full code, please visit the CodePen link.