.newsCategories {
  overflow-x: auto;
  align-items: center;
  -webkit-mask-image: linear-gradient(to right, black calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, black calc(100% - 80px), transparent 100%);
}

.newsCategories__category {
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 110px;
}

.newsCategories__category--first {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .newsCategories {
    overflow-x: visible;
    -webkit-mask-image: none;
            mask-image: none;
    height: 3.125rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .newsCategories__category {
    min-width: 12.5rem;
    width: auto;
    transition: background-color 0.15s ease-out;
  }
  .newsCategories__category:hover {
    background-color: #F2F3F4;
  }
}
/*# sourceMappingURL=news__categories.css.map */