/* Fix text being cut off on mobile */
@media (max-width: 768px) {
  p, li, div {
    white-space: normal !important;
    overflow: visible !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    min-width: 0 !important;
  }
}
