/* ===== Articular Category Navigation ===== */

.art-category-nav{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:center;
  margin-top:20px;
}

.art-cat-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border:1.5px solid #222;
  border-radius:8px;
  text-decoration:none !important;
  font-size:12px;
  letter-spacing:1.5px;
  color:#222;
  background:transparent;
  transition:all .25s ease;
  font-weight:500;
}

/* Hover */
.art-cat-btn:hover{
  background:#222;
  color:#fff;
}

/* Active */
.art-cat-btn.active{
  background:#222;
  color:#fff;
  border-color:#222;
}

/* ===== Mobile Fix ===== */

@media (max-width: 768px){

  .art-category-nav{
    padding: 0 16px;      /* 👈 This is the key */
    gap:12px;
    justify-content:space-between;
  }

  .art-cat-btn{
    width:48%;            /* use width instead of min-width */
    padding:10px 0;
    font-size:11px;
    letter-spacing:1px;
    border-radius:6px;
    border-width:1px;
    text-align:center;
  }

}
