/* 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; }

/* Free daily-horoscope preview (server-rendered shortcode, no SDK) */
.astro-free { max-width: 540px; margin: 16px 0; border: 1px solid #e2e4ea; border-radius: 14px; padding: 20px 22px; background: #fff; color: #2a2e3a; font: 16px/1.6 system-ui, sans-serif; box-shadow: 0 4px 18px rgba(20, 24, 40, .06); }
.astro-free-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.astro-free-sign { font-size: 20px; font-weight: 800; color: #1d1340; }
.astro-free-date { font-size: 12.5px; color: #8a90a2; }
.astro-free-text { margin: 0; }
.astro-free-cta { margin: 14px 0 0; font-size: 12.5px; color: #6a7186; }
.astro-free-cta a { color: #7c5cff; font-weight: 600; }

/* License notice shown for widgets before a license is added */
.astro-notice { max-width: 540px; margin: 16px 0; border: 1px dashed #c9cdda; border-radius: 14px; padding: 18px 20px; background: #f7f8fb; color: #4a4f5c; font: 15px/1.55 system-ui, sans-serif; }
.astro-notice strong { color: #1d1340; }
.astro-notice a { color: #7c5cff; font-weight: 600; }
