/* Trusted Astrology — newsletter signup inline message styles.
 * Uses the brand palette via CSS variables (with safe fallbacks).
 */

.newsletter__msg {
	margin-top: 14px;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.92rem;
	line-height: 1.45;
	font-family: var(--sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif);
}
.newsletter__msg--loading {
	color: var(--ink-soft, #5B4783);
	background: rgba(201, 162, 75, 0.08);
}
.newsletter__msg--success {
	color: var(--ink, #2E1A47);
	background: rgba(201, 162, 75, 0.14);
	border-left: 3px solid var(--gold, #C9A24B);
}
.newsletter__msg--error {
	color: #6e1a1a;
	background: #fbecec;
	border-left: 3px solid #c44;
}
