/* ✅ Category Tabs */
.momentsTabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin: 0 auto 26px;
}

.momentsTab{
  border: 1px solid rgba(7,26,51,0.14);
  background:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  transition:0.2s ease;
  color:#071a33;
}

.momentsTab:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.momentsTab.active{
  background:#0aa2d4;
  border-color:#0aa2d4;
  color:#fff;
}

/* ✅ Hide filtered items */
.momentCard.is-hidden{
  display:none !important;
}
