/*
 * Magento 2.4.8 catalog-listing image-sizing guard.
 *
 * 2.4.8 sizes listing images with `aspect-ratio` on .product-image-container;
 * it previously used a padding-bottom percentage hack on
 * span.product-image-wrapper. pub/public/css/common.css sets
 * `.product-image-container { display: inline }` -- harmless under the old
 * technique, but fatal now: width/height/aspect-ratio do not apply to inline
 * boxes, so the wrapper collapses to 0 and overflow:hidden clips every image
 * on all Music Man category and search pages.
 *
 * common.css loads after the theme CSS, so the class is doubled for
 * specificity (0,2,0) rather than relying on order or !important.
 * common.css is fixed at source too; this file lives on a versioned /static/
 * URL so the fix is immune to a CDN-stale copy of common.css.
 */
.product-image-container.product-image-container {
    display: inline-block;
}
