.trending-list__items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0.35rem 0;
  padding: 0; }
  @media (max-width: 47.9375em) {
    .trending-list__items {
      height: 1.5rem;
      overflow: hidden; } }

.trending-list__item {
  position: relative; }
  .trending-list__item > a {
    -webkit-transition: color 0.15s ease-in-out 0s;
    transition: color 0.15s ease-in-out 0s;
    color: #000;
    display: block;
    font-family: "Poynter Gothic Text Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.5em 0.71429em;
    text-decoration: none; }
    .trending-list__item > a:hover {
      color: #57a039;
      text-decoration: none; }
  .trending-list__item:not(:first-child):before {
    height: 0.3rem;
    width: 0.3rem;
    background-color: #e3e3e3;
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
    left: -0.15rem;
    top: calc(50% - 0.15rem); }
  @media (min-width: 48em) {
    .trending-list__item > a {
      font-size: 0.8rem; } }
