/*
 * Feature Cards masonry-style stagger + background shape - frontend only
 * (see the enqueue function in functions.php for why). The editor keeps the
 * default grid behaviour (equal-height cards, plain rectangular background)
 * for easier editing; the real page lets each card size to its own content,
 * nudges every second card down, and clips the block's background (incl.
 * whatever color the author picked) to a shape with two rounded notches.
 */
.wp-block-concord-template-feature-cards {
	clip-path: url( '#concord-feature-cards-clip' );
}

.wp-block-concord-template-feature-cards .feature-cards__grid {
	align-items: start;
}

@media ( min-width: 1025px ) {
	.wp-block-concord-template-feature-cards .feature-cards__card:nth-child( even ) {
		margin-top: 40px;
	}
}
