/* purgecss start ignore */
img,
picture,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}

img,
picture {
  max-width: 100%;
}

img:where([width]) {
  width: auto; /* Defer to max-width */
}

img:where([width][height]) {
  height: auto; /* Preserve aspect ratio */
}

/* Let SVG scale without boundaries */
img:where([src$=".svg"]) {
  width: 100%;
  height: auto;
  max-width: none;
}
/* purgecss end ignore */
