@mixin hover() {
    &:hover { @content; }
}

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