// modern clearfix mixin
@mixin clearfix {
  &::after {
    @include block(pseudo);
    clear: both;
  }
}
