/*
 * Independent Testing Credit Program page frame.
 * Keeps every page section on one shared horizontal system without changing
 * the global Twenty Twenty-Five content-width settings.
 */

.wp-block-post-content {
    position: relative;
    left: 50%;
    width: min(1180px, calc(100vw - 40px)) !important;
    max-width: 1180px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: translateX(-50%);
    box-sizing: border-box;
}

/*
 * Gutenberg can apply the theme's constrained width to individual page
 * blocks even after the post-content frame is widened. On this one page,
 * allow the page's hero, resource links, and shortcode blocks to use the
 * shared frame instead.
 */
.wp-block-post-content > :where(:not(.alignfull)) {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

.mrl-testing-credit-hero,
.mrl-endo-selector,
.mrl-testing-credit-terms {
    max-width: none !important;
}

@media (max-width: 800px) {
    .wp-block-post-content {
        width: calc(100vw - 30px) !important;
        max-width: none !important;
    }
}
