/* =========================
   SUBMENU CATEGORIES (pills)
   ========================= */
.th-news__cats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 6px 0 22px;
}

.th-news__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: var(--brand, #055ea9);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.th-news__cat:is(:hover, :focus-visible) {
  background: #f3f7ff;
  border-color: #cfe0ff;
  outline: none;
}

.th-news__cat.is-active {
  background: var(--brand, #055ea9);
  border-color: var(--brand, #055ea9);
  color: #fff;
}
