/*! epanel custom overrides - created 2026-09-25
 * Purpose: knowledgebase articles and announcements store their HTML in the DB, and
 * WHMCS strips inline display / max-width / width from that HTML on output, so a
 * screenshot wider than the content column cannot be constrained from the source.
 * Scope is deliberately limited to the two content containers - NOT a global img
 * rule - so the theme's own image rules (.mc-panel-promo img, .twofa-module img,
 * .featured-tld img, ...) keep their max-width/max-height values.
 */
.card-body article img,
.card-body .py-2 img {
    max-width: 100%;
    height: auto;
}
