/* Cluster primitive */
/* Arranges items in a flex container with wrapping and consistent gaps */

.cluster {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s1);
}

/* NEW: Alignment options */
.cluster.align-start {
	align-items: flex-start;
}

.cluster.align-center {
	align-items: center;
}

.cluster.align-end {
	align-items: flex-end;
}

/* NEW: Justify options */
.cluster.justify-start {
	justify-content: flex-start;
}

.cluster.justify-center {
	justify-content: center;
}

.cluster.justify-end {
	justify-content: flex-end;
}

.cluster.justify-between {
	justify-content: space-between;
}
