.btn-newsletter,
.btn-newsletter * {
	box-sizing: border-box;
}

.btn-newsletter {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	min-height: 280px;
	padding: 80px;
	gap: 64px;
	background: #111111;
}

.btn-newsletter__copy {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	gap: 12px;
}

.btn-newsletter__eyebrow {
	font-family: "Outfit", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	color: #e03f54;
}

.btn-newsletter__title {
	width: 100%;
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-size: 36px;
	font-weight: 900;
	line-height: 1.15;
	color: #ffffff;
}

.btn-newsletter__description,
.btn-newsletter__description p {
	margin: 0;
}

.btn-newsletter__description {
	width: 100%;
	font-family: "DM Sans", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.7);
}

.btn-newsletter__form-wrap {
	flex: 0 1 480px;
	width: 480px;
	max-width: 100%;
}

.btn-newsletter__form {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 16px;
}

.btn-newsletter__row {
	display: flex;
	align-items: stretch;
	width: 100%;
	gap: 12px;
}

.btn-newsletter__input {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 46px;
	padding: 12px 16px;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	outline: 0;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-newsletter__input::placeholder {
	color: rgba(255, 255, 255, 0.6);
	opacity: 1;
}

.btn-newsletter__input:focus {
	border-color: #e03f54;
	box-shadow: 0 0 0 2px rgba(224, 63, 84, 0.2);
}

.btn-newsletter__button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 14px 24px;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	white-space: nowrap;
	color: #ffffff;
	background: #e03f54;
	border: 0;
	border-radius: 2px;
	cursor: pointer;
	transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.btn-newsletter__button:hover,
.btn-newsletter__button:focus-visible {
	background: #c93247;
}

.btn-newsletter__button:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.btn-newsletter__button:active {
	transform: translateY(1px);
}

.btn-newsletter__button[disabled] {
	cursor: wait;
	opacity: 0.7;
}

.btn-newsletter__spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: btn-newsletter-spin 0.7s linear infinite;
}

.btn-newsletter__button.is-loading .btn-newsletter__button-label {
	display: none;
}

.btn-newsletter__button.is-loading .btn-newsletter__spinner {
	display: block;
}

.btn-newsletter__legal,
.btn-newsletter__legal p,
.btn-newsletter__consent {
	margin: 0;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 14px;
	color: rgba(255, 255, 255, 0.4);
}

.btn-newsletter__consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	cursor: pointer;
}

.btn-newsletter__consent input {
	flex: 0 0 auto;
	margin: 1px 0 0;
}

.btn-newsletter__consent a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.btn-newsletter__status {
	display: none;
	min-height: 18px;
	margin: -6px 0 0;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	line-height: 1.4;
}

.btn-newsletter__status:not(:empty) {
	display: block;
}

.btn-newsletter__status.is-success {
	color: #8fd6a3;
}

.btn-newsletter__status.is-error {
	color: #ff8292;
}

.btn-newsletter__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@keyframes btn-newsletter-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
	.btn-newsletter {
		flex-direction: column;
		align-items: flex-start;
		padding: 56px 48px;
		gap: 36px;
	}

	.btn-newsletter__form-wrap {
		flex-basis: auto;
		width: 100%;
	}
}

@media (max-width: 767px) {
	.btn-newsletter {
		padding: 40px 24px;
		gap: 28px;
	}

	.btn-newsletter__title {
		font-size: 30px;
	}

	.btn-newsletter__row {
		flex-direction: column;
	}

	.btn-newsletter__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn-newsletter__button,
	.btn-newsletter__input {
		transition: none;
	}
}
