.generic-rating-container {
  margin-bottom: 15px;
}
.generic-rating {
  display: block;
  overflow: hidden;
  &__score {
    display: inline-block;
    background: $interactive-color;
    color: #fff;
    padding: 0 5px;
    border-radius: 2px;
  }
  &__text {
    @include medium-weight;
    color: $brand-grey-dark;
  }
  &__number {
    color:  $brand-copy-light;
  }
  &--lite {
    .generic-rating__score {
      font-size: 12px;
      line-height: 20px;
      strong {
        font-size: 14px;
      }
    }
    .generic-rating__text {

    }
    .generic-rating__number {

    }
  }
  &--full {
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    align-items: center;

    .generic-rating__score {
      font-size: 14px;
      line-height: 25px;
      float: left;
      strong {
        font-size: 18px;
      }
    }
    .generic-rating__text {
      &:after {
        content: "—";
        font-weight: 400;
        margin: 0px 4px;
      }
    }
    .generic-rating__number {
    }
  }
}

.btn-reviews {
  margin-bottom: 20px;
  @media (max-width: $grid-float-breakpoint-max) {
    margin-bottom: 0;
    margin-top: 20px;
  }
}
