How To Choose The Right Tag

https://www.smashingmagazine.com/2022/07/article-section-elements-accessibility/

<header>
  <nav>
    <!--     Website navigation   -->
  </nav>
</header>

<main>
  <article>
    <h1>
      Article versus section: Making your choice count in the larger context of
      accessibility
    </h1>

    <section>
      <h2>Quick summary</h2>
      <!--  paragraphs go here -->
    </section>

    <section>
      <h2>Introduction</h2>
      <!--  paragraphs go here -->
    </section>

    <section>
      <h2>Document Semantics</h2>
      <!--  paragraphs go here -->
    </section>

    <section>
      <h2>Does my grouping play a semantic role?</h2>
      <!--  paragraphs go here -->
    </section>

    <section>
      <h2>What semantic role does my grouping play?</h2>
      <!--  paragraphs go here -->
      <h3>What the HTML specs say</h3>
      <!--  paragraphs go here -->
      <h3>Understanding what the specs mean</h3>
      <!--  paragraphs go here -->
    </section>

    <section>
      <h2>Let's group some content</h2>
      <!--  paragraphs go here -->
      <h3>A bog website landing page</h3>
      <!--  paragraphs go here -->
      <h3>An article post on a blog website</h3>
      <!--  paragraphs go here -->
      <h3>A web application: Twitter</h3>
      <!--  paragraphs go here -->
    </section>

    <section>
      <h2>Nesting sections AND articles</h2>
      <!--  paragraphs go here -->
    </section>

    <!--     Rest of article continues here   -->
  </article>
</main>

<footer>
  <nav>
    <!-- Topic navigation     -->
  </nav>
</footer>