/*
 * Responsive background-image overrides for the .enroll block
 * (blocks/contact-form-block). The image path is a WordPress-theme
 * absolute path (/wp-content/themes/clinic-family/i/...) that has no
 * equivalent in working/layout's static build, so this lives in its own
 * small stylesheet instead of main.css / working/layout/src/scss — see
 * CLAUDE.md "Layout & styles" for the pattern (accessibility.css /
 * gutenberg-content.css).
 */
@media (max-width: 759px) {
    .enroll {
        background-image: url(/wp-content/themes/clinic-family/i/18-tablet.webp) !important;
    }
}
@media (max-width: 450px) {
    .enroll {
        background-image: url(/wp-content/themes/clinic-family/i/18-mobile.webp) !important;
    }
}
