/**
 * Remove border/padding that .taxonomy-term a applies to all links inside
 * full article nodes rendered within li.taxonomy-term elements. The thex
 * theme CSS rule was intended only for taxonomy tag chips, but the template
 * wraps entire nodes in li.taxonomy-term, so every link inherits it.
 */
.taxonomy-term article a {
  border: none;
  padding: 0;
}

/* Prevent word-break: break-all on li.taxonomy-term (thex theme) from
   cascading into body text of nodes rendered on taxonomy term pages. */
.taxonomy-term article {
  word-break: normal;
}
