.wbc-blog-state-sticky {
  h2 {
    color: #FFF;
    font-size: 28px;
    line-height: 105%;
    font-weight: 800;
    text-align: center;
  }
  
  ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    
    li {
      color: #FFF;
      font-size: 12px;
      font-weight: 700;
      line-height: 150%; /* 18px */
      display: grid;
      grid-template-columns: 16px 1fr;
      align-items: center;
      gap: 4px;
      
      &:before {
        content: '';
        display: inline-flex;
        width: 16px;
        height: 16px;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url("data:image/svg+xml,%0A%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8.5' cy='8' r='8' fill='url(%23paint0_linear_2586_103204)'/%3E%3Cpath d='M7.56889 10.2841L5.39746 8.11265L5.94032 7.56979L7.56889 9.19836L11.0641 5.70312L11.607 6.24598L7.56889 10.2841Z' fill='white' stroke='white' stroke-width='1.33333' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_2586_103204' x1='0.5' y1='8' x2='16.5' y2='8' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%231C69E2'/%3E%3Cstop offset='1' stop-color='%23699BE9'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
      }
    }
  }
  .page-links {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    
     .page-link {
      border-radius: 12px;
      background: #FFF;
      padding: 20px 24px;
      position: relative;
       
       &.btn {
          border-radius: 12px;
          background: var(--Primary-Base, #1C69E2);
          width: 100%;
          text-align: center;
          padding: 24px 32px;
         
         h3 {
            font-size: 16px;
           line-height: 125%;
           font-weight: 700;
           color: #FFF;
           margin-bottom: 0;
         }
       }
       
       &:not(.btn):&:hover {
        background: linear-gradient(180deg, #1C69E2 -247.42%, #FFF 74.48%);
         
         h3 {
           
           &:after {
             opacity: 1;
             visibility: visible;
             right: -30px;
           }
         }
       }
       
       h3 {
         font-size: 18px;
         font-weight: 700;
         line-height: 150%;
         margin-bottom: 6px;
         position: relative;
         width: max-content;
         
         &:after {
           content: '';
           display: inline-flex;
           width: 16px;
           height: 16px;
           background-size: contain;
           background-repeat: no-repeat;
           transition: all .25s;
           opacity: 0;
           visibility: hidden;
           right: 0px;
           position: absolute;
           top: 50%;
           transform: translateY(-50%);
           background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' viewBox='0 0 16 17' fill='none'%3E%3Cpath d='M11.7239 9.16667L9.33333 11.5572L10.2761 12.5L13.8047 8.9714C14.0651 8.711 14.0651 8.28893 13.8047 8.02853L10.2762 4.5L9.33333 5.44281L11.7239 7.83333H2V9.16667H11.7239Z' fill='black'/%3E%3C/svg%3E");
         }
       }
       
       p {
         font-size: 12px;
         line-height: 150%;
         margin: 0;
       }
       
       a {
         position: absolute;
         inset: 0;
       }
    }
  }
  .bottom-message {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-top: 24px;
    margin-bottom: 0;
    
    strong {
      color:#FFF;
    }
  }
}