/* Styling comes from the real applab.css (.insights-section, .insights-grid). */

/*
 * patterns/latest-insights.php's Query Loop wraps its content in
 * <div class="wp-block-query insights-grid"> > <ul class="wp-block-post-template"> > <li>
 * — .insights-grid{ display:grid } only sees ONE child (the <ul>), so the
 * actual article-card items were stacking vertically inside it instead of
 * forming the 3-column grid. `display: contents` removes the extra wrapper
 * levels from the box tree so the cards become effective direct grid
 * children again (same fix already applied to .pt2-grid/.fcx-track
 * elsewhere in this theme).
 */
.insights-grid > .wp-block-post-template,
.insights-grid > .wp-block-post-template > li {
	display: contents;
}
