/* Footer & Inline Newsletter-Form */
.kz-nl-form {
	font-family: inherit;
	color: inherit;
	max-width: 480px;
}
.kz-nl-form--footer {
	color: #f3f4f6;
}
.kz-nl-form__title {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 6px;
}
.kz-nl-form__text {
	font-size: 14px;
	margin: 0 0 12px;
	line-height: 1.45;
	opacity: 0.9;
}
.kz-nl-form__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.kz-nl-form__row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.kz-nl-form__input {
	flex: 1 1 200px;
	min-height: 44px;
	padding: 10px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.95);
	color: #111827;
	font-size: 15px;
	box-sizing: border-box;
	outline: none;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.kz-nl-form__input:focus {
	border-color: #ff6161;
	box-shadow: 0 0 0 3px rgba(255, 97, 97, 0.18);
}
.kz-nl-form__button {
	min-height: 44px;
	padding: 0 22px;
	background: #ff6161;
	color: #ffffff;
	border: 0;
	border-radius: 12px;
	font-weight: 800;
	font-size: 15px;
	cursor: pointer;
	transition: filter 0.15s, transform 0.05s;
	white-space: nowrap;
}
.kz-nl-form__button:hover {
	filter: brightness(1.05);
}
.kz-nl-form__button:active {
	transform: translateY(1px);
}
.kz-nl-form__button[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}
.kz-nl-form__consent {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 12px;
	line-height: 1.45;
	opacity: 0.85;
}
.kz-nl-form__consent a {
	color: inherit;
	text-decoration: underline;
}
.kz-nl-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.kz-nl-form__message {
	font-size: 13px;
	min-height: 1.2em;
	line-height: 1.45;
}
.kz-nl-form__message--success {
	color: #16a34a;
}
.kz-nl-form__message--error {
	color: #dc2626;
}
