/* Bandeau newsletter — barre fixe discrète en bas d'écran */
.amour-nl {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9990;
	background: #2f2c2c;
	border-top: 1px solid rgba(160, 206, 78, 0.45);
	color: #d8d8d8;
	font-family: Roboto, Lora, Georgia, serif;
	font-size: 14px;
	line-height: 1.35;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.22);
}

.amour-nl[hidden],
.amour-nl:not(.is-visible) {
	display: none !important;
}

.amour-nl.is-visible {
	display: block !important;
}

.amour-nl__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 44px 10px 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 18px;
	position: relative;
}

.amour-nl__close {
	position: absolute;
	top: 6px;
	right: 10px;
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	color: #a7a7a7;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.amour-nl__close:hover,
.amour-nl__close:focus {
	color: #fff;
	outline: none;
}

.amour-nl__copy {
	flex: 1 1 220px;
	min-width: 0;
}

.amour-nl__title {
	margin: 0;
	font-family: Arvo, Georgia, serif;
	font-size: 15px;
	font-weight: 400;
	color: #f3f3f3;
}

.amour-nl__sub {
	margin: 2px 0 0;
	font-size: 12px;
	color: #a7a7a7;
}

.amour-nl__form {
	display: flex;
	flex: 1 1 280px;
	gap: 8px;
	min-width: 0;
	align-items: center;
}

.amour-nl__input {
	flex: 1 1 auto;
	min-width: 0;
	height: 36px;
	padding: 0 12px;
	border: 1px solid #4a4747;
	border-radius: 3px;
	background: #221f1f;
	color: #fff;
	font-size: 14px;
}

.amour-nl__input::placeholder {
	color: #8a8a8a;
}

.amour-nl__input:focus {
	outline: none;
	border-color: #a0ce4e;
}

.amour-nl__btn {
	flex: 0 0 auto;
	height: 36px;
	padding: 0 14px;
	border: 0;
	border-radius: 3px;
	background: #a0ce4e;
	color: #1d1d1d;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

.amour-nl__btn:hover,
.amour-nl__btn:focus {
	background: #b5db6d;
	outline: none;
}

.amour-nl__btn:disabled {
	opacity: 0.65;
	cursor: wait;
}

.amour-nl__msg {
	flex: 1 1 100%;
	margin: 0;
	font-size: 13px;
	color: #a0ce4e;
}

.amour-nl__msg.is-error {
	color: #e8a0a0;
}

.amour-nl__legal {
	flex: 1 1 100%;
	margin: 0;
	font-size: 11px;
	color: #8a8a8a;
}

.amour-nl__legal a {
	color: #68ac10;
	text-decoration: none;
}

.amour-nl__legal a:hover {
	color: #a0ce4e;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

@media (max-width: 640px) {
	.amour-nl__inner {
		padding: 12px 40px 12px 12px;
	}

	.amour-nl__form {
		flex: 1 1 100%;
	}

	.amour-nl__btn {
		padding: 0 12px;
	}
}
