//
// Type mixins
// -----------------------------------------

@mixin text-responsive($font-size) {
  font-size: $font-size;

  @include media-breakpoint-down(md) {
    font-size: ceil($font-size * 0.8);
  }
}
