/* Styling comes from the real applab.css (.recognized, .recog-grid). */

/*
 * patterns/recognized-awards.php's Query Loop wraps its content in
 * <div class="wp-block-query recog-grid"> > <ul class="wp-block-post-template">
 * > <li>. .recog-grid{ display:grid } only sees ONE child (the <ul>), so the
 * actual award-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/
 * .insights-grid/.conf-grid elsewhere in this theme).
 */
.recog-grid > .wp-block-post-template,
.recog-grid > .wp-block-post-template > li {
	display: contents;
}
