/**
 * Insights — page-specific styles
 *
 * Covers the insights home template (templates/home.html) and the
 * insights-archive-header pattern.  Visual rules that were previously
 * baked into inline `style` attributes have been moved here so that
 * WordPress block validation can match the serialised HTML correctly.
 *
 * @package aldervan-daly
 */

/* ── Archive header image ───────────────────────────────────────── */

/**
 * The core/image block only stores `border-radius` in its attributes,
 * so the block save function only emits `style="border-radius:0.25rem"`.
 * Layout / sizing rules live here instead of as inline styles.
 */
.insights-header-img img {
	aspect-ratio: 4 / 3;
	object-fit:   cover;
	width:        100%;
	display:      block;
}
