@mixin hover-focus() {
  &:hover,
  &:focus {
      @content;
  }
}
  