.leonlab-button-group {
	display: flex;
	flex-wrap: wrap;
}

.leonlab-button-group--direction-row {
	flex-direction: row;
}

.leonlab-button-group--direction-column {
	flex-direction: column;
}

.leonlab-button-group--gap-sm {
	gap: 8px;
}

.leonlab-button-group--gap-md {
	gap: 12px;
}

.leonlab-button-group--gap-lg {
	gap: 16px;
}

.leonlab-button-group--justify-left {
	justify-content: flex-start;
}

.leonlab-button-group--justify-center {
	justify-content: center;
}

.leonlab-button-group--justify-right {
	justify-content: flex-end;
}

.leonlab-button-group__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 800;
	border: 1px solid rgba(148, 163, 184, 0.30);
	transition: transform 160ms ease, background-color 160ms ease;
}

.leonlab-button-group__btn:hover {
	transform: translateY(-1px);
}

.leonlab-button-group__btn--primary {
	background: rgba(37, 99, 235, 0.95);
	color: #fff;
	border-color: rgba(37, 99, 235, 0.40);
}

.leonlab-button-group__btn--primary:hover {
	background: rgba(29, 78, 216, 0.98);
}

.leonlab-button-group__btn--secondary {
	background: rgba(255,255,255,0.12);
	color: inherit;
}

.leonlab-button-group__btn--secondary:hover {
	background: rgba(255,255,255,0.16);
}

.leonlab-button-group__btn--ghost {
	background: transparent;
	color: inherit;
}

.leonlab-button-group__btn--ghost:hover {
	background: rgba(255,255,255,0.10);
}
