/* Desktop e tablet: centralizado */
.tig-cats {
  display: flex;
  justify-content: center;   /* centraliza horizontalmente */
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin: 0 auto 1rem;
  width: 100%;
}

.tig-cat {
  display: inline-block;
  padding: .5rem .75rem;
  border: 1px solid var(--nv-primary-accent, #0073e6);
  border-radius: 10px;
  font-size: .92rem;
  text-decoration: none;
  line-height: 1;
  background: #ffffff7a;
}

.tig-cat:hover,
.tig-cat.is-active {
  background: var(--nv-primary-accent, #0073e6);
  color: #fff;
  border-color: var(--nv-primary-accent, #0073e6);
}

/* Mobile: alinhado à esquerda */
@media (max-width: 767px) {
  .tig-cats {
    justify-content: flex-start; /* muda para esquerda */
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: .5rem;
    scrollbar-width: thin;
  }
  .tig-cat { white-space: nowrap; }
}
