Pagination
NavigationNumbered pagination controls with previous/next buttons and current-page state.
Rendering preview
<nav class="pg-nav" aria-label="Pagination"> <button type="button" class="pg-btn" aria-label="Previous page">← Prev</button> <ol class="pg-list"> <li><button type="button" class="pg-page">1</button></li> <li><button type="button" class="pg-page pg-page--active" aria-current="page">2</button></li> <li><button type="button" class="pg-page">3</button></li> <li><button type="button" class="pg-page">4</button></li> </ol> <button type="button" class="pg-btn" aria-label="Next page">Next →</button></nav>