.acn-signup {
	--acn-red: #e30613;
	background: #111;
	color: #fff;
	border-radius: 18px;
	overflow: hidden;
	margin: 28px 0;
	font-family: inherit;
}

.acn-signup * {
	box-sizing: border-box;
}

.acn-signup__inner {
	max-width: 760px;
	padding: 40px;
	margin: auto;
}

.acn-signup__eyebrow {
	margin: 0 0 9px;
	color: #ffb6bc;
	text-transform: uppercase;
	letter-spacing: .13em;
	font-size: 12px;
	font-weight: 800;
}

.acn-signup h2 {
	color: #fff;
	font-size: clamp(30px, 5vw, 48px);
	line-height: 1.08;
	margin: 0 0 14px;
}

.acn-signup__description {
	color: #d2d2d2;
	font-size: 17px;
	line-height: 1.55;
	margin: 0 0 25px;
}

.acn-signup__fields {
	display: grid;
	grid-template-columns: 1fr 1.35fr;
	gap: 12px;
}

.acn-signup__fields--single {
	grid-template-columns: 1fr;
}

.acn-signup label > span {
	display: block;
	font-size: 13px;
	font-weight: 650;
	margin-bottom: 7px;
}

.acn-signup input[type="text"],
.acn-signup input[type="email"] {
	width: 100%;
	height: 50px;
	border: 1px solid #444;
	background: #202020;
	color: #fff;
	border-radius: 8px;
	padding: 0 14px;
	font: inherit;
}

.acn-signup input:focus {
	outline: 3px solid rgba(227, 6, 19, .18);
	border-color: var(--acn-red);
}

.acn-signup__consent {
	display: flex !important;
	align-items: flex-start;
	gap: 9px;
	margin: 16px 0;
}

.acn-signup__consent input {
	margin-top: 3px;
	accent-color: var(--acn-red);
}

.acn-signup__consent span {
	color: #cfcfcf;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.5;
}

.acn-signup button {
	border: 0;
	background: var(--acn-red);
	color: #fff;
	border-radius: 8px;
	padding: 14px 22px;
	font: 700 15px/1 inherit;
	cursor: pointer;
}

.acn-signup button:hover {
	filter: brightness(1.08);
}

.acn-signup__privacy {
	color: #9d9d9d;
	font-size: 12px;
	margin: 14px 0 0;
}

.acn-signup__privacy a {
	color: #fff;
}

.acn-signup__notice {
	border-radius: 8px;
	padding: 12px 14px;
	margin: 0 0 17px;
	font-size: 14px;
}

.acn-signup__notice--success {
	background: #e8f7ec;
	color: #176b32;
}

.acn-signup__notice--error {
	background: #fff0f1;
	color: #a12424;
}

.acn-signup__honeypot {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0 !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden !important;
}

/* Article version: deliberately light so it matches Actu Cotonou and remains
 * visually separate from the push-notification card. */
.acn-signup--compact {
	position: relative;
	background: #fff;
	color: #161616;
	border: 1px solid #e8e8e8;
	border-left: 4px solid var(--acn-red);
	border-radius: 12px;
	box-shadow: 0 8px 26px rgba(16, 24, 40, .07);
	margin: 30px 0;
	overflow: hidden;
}

.acn-signup--compact::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 92px;
	height: 92px;
	background: radial-gradient(circle at top right, rgba(227, 6, 19, .09), transparent 68%);
	pointer-events: none;
}

.acn-signup--compact .acn-signup__inner {
	position: relative;
	z-index: 1;
	padding: 26px 28px;
}

.acn-signup--compact .acn-signup__eyebrow {
	color: var(--acn-red);
	font-size: 10px;
	margin-bottom: 7px;
}

.acn-signup--compact h2 {
	color: #111;
	font-size: clamp(22px, 3vw, 29px);
	line-height: 1.16;
	margin: 0 0 8px;
}

.acn-signup--compact .acn-signup__description {
	color: #5d5d5d;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 17px;
}

.acn-signup--compact label > span {
	color: #262626;
}

.acn-signup--compact input[type="text"],
.acn-signup--compact input[type="email"] {
	background: #fff;
	color: #161616;
	border-color: #d7d7d7;
	box-shadow: none;
}

.acn-signup--compact input[type="text"]::placeholder,
.acn-signup--compact input[type="email"]::placeholder {
	color: #929292;
}

.acn-signup--compact .acn-signup__consent {
	margin: 13px 0;
}

.acn-signup--compact .acn-signup__consent span {
	color: #666;
	font-size: 11px !important;
	line-height: 1.45;
}

.acn-signup--compact button {
	min-height: 44px;
	box-shadow: 0 5px 14px rgba(227, 6, 19, .18);
}

.acn-signup--compact .acn-signup__privacy {
	color: #777;
	font-size: 11px;
	line-height: 1.45;
	margin-top: 10px;
}

.acn-signup--compact .acn-signup__privacy a {
	color: #333;
	text-decoration: underline;
}

@media (max-width: 650px) {
	.acn-signup__inner,
	.acn-signup--compact .acn-signup__inner {
		padding: 24px 20px;
	}

	.acn-signup__fields {
		grid-template-columns: 1fr;
	}

	.acn-signup button {
		width: 100%;
	}

	.acn-signup--compact h2 {
		font-size: 22px;
	}
}
