/* behaviors.css — static-clone safety fixes layered over the site's own CSS.
   Loaded after the bundle so these win at equal specificity. */

/* Prevent oversized blog/content images from causing horizontal overflow on
   mobile (live had a couple of full-width raw <img> in post bodies). */
.pageContent img,
article img,
.blogContent img,
.blog-post img,
.postBody img,
.answer img { max-width: 100%; height: auto; }

/* Absolute safety net against horizontal scroll without breaking sticky header
   (only clips the x-axis at the root). */
html { overflow-x: hidden; }

/* Search results injected on the /search page. */
.static-search-results a:hover { text-decoration: underline; }
