/* BSG Newsletter — public subscribe form (accent card, Resend-modal style) */
.bsg-nl-signup {
	position: relative;
	max-width: 520px;
	margin: 0 auto;
	padding: 2rem 1.75rem 1.6rem;
	border-radius: 16px;
	color: #fff;
	background:
		radial-gradient(130% 90% at 15% -10%, rgba(255, 255, 255, 0.18), transparent 60%),
		var(--bsg-nl-accent, #2563eb);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.2);
	overflow: hidden;
}
.bsg-nl-signup * { box-sizing: border-box; }

.bsg-nl-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 0.9rem;
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.16);
}
.bsg-nl-icon svg { width: 24px; height: 24px; fill: #fff; }

.bsg-nl-title {
	margin: 0 0 0.4rem;
	font-size: 1.45rem;
	line-height: 1.2;
	color: #fff;
}
.bsg-nl-text {
	margin: 0 0 1.1rem;
	font-size: 0.96rem;
	line-height: 1.45;
	opacity: 0.92;
}

.bsg-nl-form {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.bsg-nl-input {
	width: 100%;
	padding: 0.8rem 0.95rem;
	border: 1px solid transparent;
	border-radius: 10px;
	background: #fff;
	color: #111827;
	font-size: 1rem;
}
.bsg-nl-input::placeholder { color: #9ca3af; }
.bsg-nl-input:focus {
	outline: none;
	border-color: #fff;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}
.bsg-nl-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.bsg-nl-button {
	appearance: none;
	border: none;
	cursor: pointer;
	background: #fff;
	color: var(--bsg-nl-accent, #2563eb);
	font-weight: 700;
	font-size: 1rem;
	padding: 0.82rem 1rem;
	border-radius: 999px;
	transition: opacity 0.15s ease;
}
.bsg-nl-button:hover { opacity: 0.92; }
.bsg-nl-button[disabled] { opacity: 0.6; cursor: default; }

.bsg-nl-msg {
	margin: 0.25rem 0 0;
	font-size: 0.85rem;
	min-height: 1.1em;
}
.bsg-nl-msg.is-ok { color: #dcfce7; }
.bsg-nl-msg.is-err { color: #ffe4e6; }

.bsg-nl-fineprint {
	margin: 0.85rem 0 0;
	font-size: 0.78rem;
	opacity: 0.72;
}
