/* Make tag pills look identical everywhere */
.page__taxonomy-item {
  color: inherit;           /* no green link color */
  text-decoration: none;    /* remove underline */
}
.page__taxonomy-item:hover,
.page__taxonomy-item:focus {
  text-decoration: none;    /* keep no underline on hover */
}

.tag-index {
  list-style: none;       /* remove bullets */
  margin: .5rem 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;        /* wrap to next line instead of overflowing */
  gap: .5rem;             /* spacing between pills */
}
.tag-index li { margin: 0; }
.tag-index .page__taxonomy-item { white-space: nowrap; } /* keeps each pill on one line */
.tag-index .tag-count { opacity: .85; font-size: .85em; margin-left: .25em; }