@layer ed-utilities {
  /* Apply Flexbox with 0 specificity to ensure a flex wrap util produces a visible change */
  :where(.ed-flex-wrap, .ed-flex-nowrap, .ed-flex-wrap-reverse) {
    display: flex;
  }

  .ed-flex-wrap {
    flex-wrap: wrap;
  }
  .ed-flex-nowrap {
    flex-wrap: nowrap;
  }
  .ed-flex-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
}
