/**
 * Single-product page overrides. Teamwork #145.
 *
 * WooCommerce's `wp:woocommerce/product-summary` block sets its own
 * `font-size` on the `.wc-block-components-product-summary` wrapper
 * (~19px, fixed). The old `wp:post-excerpt` block used the theme's
 * "Base (19-16)" fluid preset from theme.json — a `clamp(1rem, …,
 * 1.1875rem)` that scales with viewport (~18.92px on desktop).
 *
 * Apply the same preset here via its auto-generated CSS variable so
 * the summary matches the rest of the theme's body copy across every
 * breakpoint, without pinning a magic pixel value.
 */

.wp-block-woocommerce-product-summary .wc-block-components-product-summary,
.wp-block-woocommerce-product-summary .wc-block-components-product-summary p {
	font-size: var(--wp--preset--font-size--base);
}
