/* hide reply counter */
.status__action-bar__counter__label {
 display: none;
}

/* hide follows/followers count */
.account__action-bar__tab:not(:first-child) strong span {
  position: absolute;
  visibility: hidden;
}

/* replace follows/followers count with custom text */
.account__action-bar__tab:not(:first-child) strong span:before {
  content: "Ⓐ";
  visibility: visible;
}

/* underline links (accessibility improvement) */
a.status-link:not(.mention) {
  text-decoration: underline;
}

