.blog-category-chip-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 980px;
  margin: 0 auto;
}

.blog-category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(247, 153, 24, 0.32);
  border-radius: 999px;
  background: transparent;
  color: var(--primary-wizardeo) !important;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.blog-category-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.55rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(247, 153, 24, 0.16);
  color: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.blog-category-chip:hover,
.blog-category-chip:focus {
  color: #7ec2fc !important;
  border-color: #7ec2fc;
  background: rgba(126, 194, 252, 0.08);
}

.blog-category-chip.is-active {
  color: #7ec2fc !important;
  border-color: #7ec2fc;
  background: rgba(126, 194, 252, 0.08);
}

.blog-category-chip:hover .blog-category-chip__count,
.blog-category-chip:focus .blog-category-chip__count,
.blog-category-chip.is-active .blog-category-chip__count {
  background: rgba(126, 194, 252, 0.16);
}

html[data-wz-theme="dark"] .blog-category-chip {
  background: rgba(255, 255, 255, 0.03);
}
