@mixin hyphens {
  // word-break: break-word;
  hyphens: auto;
}

@mixin no-hyphens {
  // word-break: normal;
  hyphens: manual;
}

@mixin no-break {
  word-break: keep-all;
  white-space: nowrap;
}

@mixin ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  // vertical-align: middle;
}

@mixin max-lines ($count) {
  @if $count {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: $count;

    /* autoprefixer: ignore next */
    -webkit-box-orient: vertical;
  }
}
