// Images require `alt` attributes, empty `alt`s are fine but should be double-checked,
// no `alt` is bad and is flagged red.

img:not([alt]) {
  @include error("`alt` attribute required");
}
img[alt=""] {
  @include warning("empty `alt` attribute");
}
