.button-lists-article{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    list-style-type: none;
    gap: 20px;
    padding: 0;
    margin: -30px 0 40px;
    width: 100%;
  }
  .button-lists-article .btn{
    height: 64px;
    width: 200px;
    padding: 0;
    border: 0;
   
    background-color: #fff;
    font-size: var(--f-16);
    font-weight: 500;
    color: var(--black);
  }
  .button-lists-article .btn.active,
  .pc .button-lists-article .btn:hover{
    color: #fff;
    background-color: var(--black);
  } 
  .button-lists-article.active-blue .btn.active,
  .pc .button-lists-article.active-blue .btn:hover{
    color: #fff; 
    background-color: #3400FF;
    box-shadow: 4px 4px 0px #2200A7 !important;
  }
  .button-lists-article li:before{display: none;}

  @media (max-width:1550px) {
    .button-lists-article  .btn{
      height: 60px;
      line-height: 60px;
      width:180px;
    }
  }
  
  @media (max-width:1199px) {
    .button-lists-article  {gap: 15px; margin-bottom:30px;}
    .button-lists-article  .btn{
      height: 50px;
      line-height: 50px;
      /* width:135px; */
    }
  }
  
  @media (max-width:991.98px) {
    .button-lists-article  {gap: 10px; margin-bottom:30px;}
    .button-lists-article  .btn{
      height: 45px;
      line-height: 45px;
      /* width:115px; */
      font-size: 14px;
    }
  }

  @media (max-width:670px) {
    .button-lists-article  {
      flex-wrap: wrap;
      margin-top:  -20px;
      margin-bottom:30px;
      margin-left: auto;
      margin-right: auto;
      max-width: 400px;
    }
    .button-lists-article  .btn{
      height: 35px;
      line-height: 35px;
      /* width:95px; */
      font-size: 12px;
      border-radius: 10px;
    }
  }

  .news-detail h3{
    font-size: 22px;
  }



.row::-webkit-scrollbar {
    display: none; /* Hide the scrollbar for cleaner UI */
}
