/* scoped: si-news-resources-NewsPagination */

  .pagination:where(.si-news-resources-NewsPagination, .si-news-resources-NewsPagination *){
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 0 80px 0;
  }

  .page-btn:where(.si-news-resources-NewsPagination, .si-news-resources-NewsPagination *){
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #272727;
    text-decoration: none;
    border: 1px solid #E0E0E0;
    background: #FFFFFF;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .page-btn:hover:not(.disabled):not(.active):where(.si-news-resources-NewsPagination, .si-news-resources-NewsPagination *){
    background: #F7F7FA;
    border-color: #272727;
  }

  .page-btn.active:where(.si-news-resources-NewsPagination, .si-news-resources-NewsPagination *){
    background: #D62121;
    color: #FFFFFF;
    border-color: #D62121;
  }

  .page-btn.disabled:where(.si-news-resources-NewsPagination, .si-news-resources-NewsPagination *){
    opacity: 0.35;
    cursor: default;
  }
