/* Font classes used in saved Quill HTML content */
.ql-font-garamond {
  font-family: Garamond, "Times New Roman", serif;
}

.ql-font-sofia {
  font-family: Sofia, sans-serif;
}

.ql-font-slabo {
  font-family: "Slabo 27px", serif;
}

.ql-font-roboto {
  font-family: "Roboto Slab", serif;
}

.ql-font-inconsolata {
  font-family: Inconsolata, monospace;
}

.ql-font-ubuntu {
  font-family: "Ubuntu Mono", monospace;
}

/* Preserve editor-created line breaks on mobile where global br is hidden */
@media (max-width: 767px) {
  .quill-content br {
    display: inline !important;
  }
}
