/**
 * MHM2-724 follow-up — align the product detail page's content width with the
 * category/listing pages on desktop: the category page-main caps at 1240px
 * (28px side padding → 1184px content). PDP sections previously capped at
 * 1550px (info container, tabs) and 1160px (related bands), so PDP content
 * sat wider/narrower than every listing page on large screens.
 * Background bands stay full-bleed; only the inner content column is capped.
 */
@media (min-width: 768px) {
    .catalog-product-view .custom-product-info-main .custom-product-info-container,
    .catalog-product-view .custom-product-info-container,
    .catalog-product-view .mb-pdp-tabs {
        max-width: 1240px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }
    .catalog-product-view .rel-band .rel-inner {
        max-width: 1184px; /* 1240 − 2×28 = the category content width */
    }
}
