/*
 * Wiki content fixes (web pages).
 *
 * Frappe Wiki's `.markdown img` has no width limit, so an image wider than the
 * 650px content column (e.g. the 1240px marking-out diagrams) overflows and gets
 * clipped by `.wiki-page-content{overflow-x:hidden}` on mobile — the right side
 * becomes unreachable. Constrain content images to the column so nothing is cut off;
 * tapping an image opens the full-size original (see wiki_image_zoom_v1.js).
 */
.wiki-page-content .from-markdown img,
.wiki-page-content .markdown img,
.from-markdown img,
.markdown img {
  max-width: 100% !important;
  height: auto !important;
  cursor: zoom-in;
}
