.category-poster {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden; }
  .category-poster:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(28, 29, 31, 0.2);
    transition: background-color .3s; }
  .category-poster .category-caption {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    text-align: center; }
    .category-poster .category-caption .title {
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 0 10px; }
  .category-poster .count {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.36px;
    border-radius: 3px;
    background-color: rgba(20, 204, 67, 0.7);
    padding: 5px 7px;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2; }
  .category-poster:hover:after {
    background-color: transparent; }

@media (max-width: 993px) {
  .category-poster .count {
    top: 10px;
    right: 10px;
    padding-top: 3px;
    padding-bottom: 3px; }
  .category-poster .category-caption .title {
    font-size: 14px; } }
