/**
 * Structural styles for [brro_aanbod_archive_loop] load-more.
 * Wrappers use display:contents so the theme's own card grid/flex layout is
 * preserved; only the load-more row is a real layout child.
 */

/* Loop + item wrappers pass through: the theme's cards stay the grid/flex items. */
.brro-aanbod-archive-loop,
.brro-aanbod-archive-loop__item {
	display: contents;
}

/* Cards beyond the current batch are removed from layout until revealed. */
.brro-aanbod-archive-loop__item--hidden {
	display: none;
}

/* Load-more row: span the full width in common grid/flex parents and sit below the cards. */
.brro-aanbod-archive-loop__more {
	grid-column: 1 / -1;
	flex-basis: 100%;
	width: 100%;
	margin-top: 1em;
	text-align: center;
}
