.psb-newsletter-row {
	background-color: var(--e-global-color-text);
	width: 100%;
	box-sizing: border-box;
}

.psb-newsletter {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.psb-newsletter__tagline {
	color: #fff;
	font-weight: 400;
	font-size: 17px;
	margin-bottom: 12px;
	font-family: var(--e-global-typography-primary-font-family);
}

.psb-newsletter__form {
	display: flex;
	flex-direction: row;
}

.psb-newsletter__email {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid #CBD5E0;
	border-right: none;
	border-radius: 5px 0 0 5px !important;
	font-size: 1rem;
	box-sizing: border-box;
	outline: none;
	min-width: 0;
}

.psb-newsletter__email:focus {
	border-color: var(--e-global-color-primary);
	box-shadow: inset 0 0 0 1px var(--e-global-color-primary);
}

.psb-newsletter__submit {
	padding: 10px 24px !important;
	background-color: var(--e-global-color-primary) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0 5px 5px 0 !important;
	font-size: 1rem !important;
	cursor: pointer !important;
	transition: background-color 0.2s !important;
	white-space: nowrap !important;
	font-family: var(--e-global-typography-primary-font-family) !important;
}

.psb-newsletter__submit:hover {
	background-color: #fff !important;
	color: var(--e-global-color-text) !important;
}

.psb-newsletter__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.psb-newsletter__microcopy {
	margin-top: 10px;
	font-size: 0.75rem;
	color: #7F8C8D;
	line-height: 1.4;
	font-family: var(--e-global-typography-primary-font-family);
}

.psb-newsletter__microcopy a {
	color: #7F8C8D;
	text-decoration: underline;
	font-family: var(--e-global-typography-primary-font-family);
}

.psb-newsletter__microcopy a:hover {
	color: #a0aab0;
}

.psb-newsletter__message {
	font-size: 0.875rem;
	margin-top: 10px;
	min-height: 1.2em;
	color: #fff;
	font-family: var(--e-global-typography-primary-font-family);
}

.psb-newsletter__message--success {
	color: #5dba6e;
}

.psb-newsletter__message--error {
	color: #e74c3c;
}

/* ── Mobile (≤ 480px) ────────────────────────────────────────────────────── */

@media (max-width: 480px) {
	.psb-newsletter {
		max-width: none;
		width: 100%;
		padding: 0;
	}

	.psb-newsletter__tagline {
		font-size: 15px;
		margin-bottom: 10px;
		line-height: 1.35;
	}

	/* Stack: email on top, button below, both full-width. */
	.psb-newsletter__form {
		flex-direction: column;
		gap: 10px;
	}

	.psb-newsletter__email {
		flex: none;
		width: 100%;
		border-radius: 5px !important;
		border-right: 1px solid #CBD5E0;
		font-size: 0.95rem;
		padding: 14px !important;
	}

	.psb-newsletter__submit {
		width: 100%;
		border-radius: 30px !important;
		padding: 10px 24px !important;
		font-size: 0.95rem !important;
		text-align: center;
	}

	.psb-newsletter__microcopy {
		font-size: 0.8rem;
		margin-top: 12px;
	}

	.psb-newsletter__message {
		font-size: 0.85rem;
	}
}
