/**
 * GRO-472 remediation — inline style extraction
 * Scope: blocks/picoway/*.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.
 *
 * Note: blocks/picoway/hp-picoway-intro.php's body-text paragraph inline
 * style (color/font/size/weight/line-height) was removed with NO new rule
 * added here — main.css already carries an identical, higher-specificity
 * rule for `.picoway-intro__body` and its descendants (color:#fff,
 * font-family Noto Sans, font-size 18px, font-weight 400, line-height 22px,
 * all !important), so the visual result is unchanged without touching
 * main.css.
 */

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

/* blocks/picoway/hp-picoway-gallery.php — placeholder heights (was style="height:300px|462px|220px;") */
.picoway-gallery__placeholder--h300 {
    height: 300px;
}
.picoway-gallery__placeholder--h462 {
    height: 462px;
}
.picoway-gallery__placeholder--h220 {
    height: 220px;
}
