/**
 * Theme Name:     Dandell Child
 * Author:         EWR Digital
 * Template:       astra
 * Text Domain:	   dandell-child
 * Description:    Created by EWR Digital
 */

/**
 * Lawyer photo aspect-ratio + head-anchor fix
 * Added 2026-05-22 — fixes city location pages (e.g. Dartmouth MA)
 * where Paul Danziger, Rod de Llano, and Michelle Whitman photos
 * were stretching wide and cropping the lawyer's heads. Forces
 * a 1:1 square container and anchors the background crop to the
 * top of the image so faces stay visible at any container width.
 * Targets by aria-label on the .elementor-cta__bg div — surgical,
 * won't affect other CTA widgets on the site.
 */
.elementor-cta__bg[aria-label*="Danziger"],
.elementor-cta__bg[aria-label*="de Llano"],
.elementor-cta__bg[aria-label*="Whitman"] {
    aspect-ratio: 1 / 1 !important;
    background-position: center top !important;
    background-size: cover !important;
}
