/* Location Detail — image wash and no-image band.
   Both read --color-overlay / --color-overlay-dark, which branding-css-vars.php
   sets from Branding → Overlay Style (brand tint / neutral gray / none). The
   block markup handles 'none' itself, so neither rule ever sees `transparent`.

   Deliberately NOT sharing interior-page-hero-premium's identical .le-interior-hero__*
   rules: those live in le-premium/blocks/, which a Standard dealer never loads. */

/* Photo present — brand (or gray) fading out to the right, over the image. */
.le-location-detail__wash {
    background: linear-gradient(
        to right,
        color-mix(in srgb, var(--color-overlay) 100%, transparent) 0%,
        color-mix(in srgb, var(--color-overlay) 50%, transparent) 100%,
        transparent 100%);
}

/* No photo, Overlay Style: gray — a solid neutral band instead of the brand one. */
.le-location-detail__band {
    background: linear-gradient(to right, var(--color-overlay), var(--color-overlay-dark));
}
