/* Front-end wrapper. The SDK ships its own scoped widget styles; this only
   gives the container sensible spacing and a graceful loading state. */
.astro-widget {
	margin: 1.25rem 0;
	min-height: 40px;
}
.astro-widget:empty::before {
	content: "Loading…";
	display: block;
	padding: 16px 0;
	color: #8a8a9a;
	font-size: 14px;
}

/* Gutenberg editor placeholder */
.astro-block-preview {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 26px 18px;
	border: 1px dashed #c7c4e0;
	border-radius: 10px;
	background: #f7f6fd;
	text-align: center;
}
.astro-block-star { font-size: 22px; color: #7c5cff; line-height: 1; }
.astro-block-preview strong { font-size: 15px; color: #2b2540; }
.astro-block-hint { font-size: 12px; color: #8a8a9a; }
