.emb-tag-filter {
  margin: 12px 0 20px;
}
.emb-tag-filter-items {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.emb-tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 5px;
  border-radius: 999px;
  background: #e9e9e9;
  color: #1b1b1b;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  transition: background-color 0.15s ease, color 0.15s ease,
    transform 0.15s ease;
}
.emb-tag-pill:hover {
  background: #dcdcdc;
  color: #111;
  transform: translateY(-1px);
}
.emb-tag-pill.is-active {
  background: #c1121f;
  color: #fff;
}
.emb-tag-pill.is-active:hover {
  background: #a10e19;
  color: #fff;
}
