@mixin hu-bump-specificity($specificity: 2) {
  $selector: &;

  @for $i from 1 through $specificity {
    $selector: #{$selector}#{&};
  }

  @at-root #{$selector} {
    @content;
  }
}
