.ak-categories {
   list-style-type: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
}

.ak-categories .cat-item {
   background-color: rgb(26 26 26);
   padding: 12px;
   border: 1px solid rgb(26 26 26);
}

.ak-categories .cat-item:hover {
   border-color: #CC9602;
   color: #CC9602;
}

.ak-categories .cat-item:hover a {
   color: #CC9602;
}

.ak-categories .cat-item.current-cat {
   background-color: #151515;
}

.ak-categories .cat-item.current-cat {
   border-color: #CC9602;
   color: #CC9602;
}

.ak-categories .cat-item.current-cat a {
   color: #CC9602;
}

.ak-categories .cat-item a {
   color: #888888
}