/**
 * GRO-472 remediation — inline style extraction
 * Scope: blocks/hp-form.php, blocks/hp-june-speciles.php, blocks/hp-loved-treatments.php
 *
 * This file only reproduces the exact visual result that the removed
 * inline `style=""` attributes previously produced. It does not add
 * any new global/unscoped selectors.
 */

/* blocks/hp-form.php — Google Maps embed iframe (was style="border:0;") */
.hp-contact__map--noborder {
    border: 0;
}

/* blocks/hp-june-speciles.php — dynamic bg image, now driven via CSS custom property set inline per-instance */
.specials {
    background-image: var(--specials-bg-image);
}

/* blocks/hp-loved-treatments.php — missing-image placeholder tile (was style="background:#e8e2da;display:flex;align-items:center;justify-content:center;color:#b8956a;") */
.treatments__card__img--placeholder {
    background: #e8e2da;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8956a;
}
