.related-categories__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.related-categories__item {
  font-size: 14px;
  padding: 8px 12px;
  background-color: white;
  border-radius: 8px;
  transition: background-color 0.15s ease-in, color 0.15s ease-in;
}

.related-categories__item:hover {
  background-color: rgb(var(--color-brand-primary-hover));
  color: white;
}
