/**
 * Fixes Elementor core's default icon sizing for the legacy "button" widget:
 * .elementor-button-icon svg { width: 1em } assumes a roughly-square
 * icon-font glyph. Every button on this site uses the brand arrow, a wide
 * 25x13 custom SVG, so that rule squeezes it to less than half its true
 * size. Restoring width/height to auto lets the SVG's own intrinsic
 * dimensions render, matching the Figma spec across every button site-wide.
 */

.elementor-button-icon svg {
	width: auto;
	height: auto;
}
