/* Pins an image to fill and cover its positioned parent, so the parent's
   content sets the height. Width/height are needed for object-fit to work in
   Safari: https://stackoverflow.com/questions/60192601/object-fit-cover-not-working-correctly-on-safari */
@utility object-background {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
