/* TTH Article Magnet — inline opt-in form. Distinct from Grow so the two never blur together. */
.tth-am {
	margin: 28px 0;
	padding: 22px 22px 18px;
	background: #f3f7f1;
	border: 1px solid #d4e3cd;
	border-left: 4px solid #2f7a4d;
	border-radius: 8px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.tth-am__pitch {
	margin: 0 0 14px;
	font-size: 17px;
	font-weight: 600;
	color: #1f3d2b;
	line-height: 1.4;
}
.tth-am__row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tth-am__email {
	flex: 1 1 220px;
	min-width: 0;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #c2d3ba;
	border-radius: 6px;
	background: #fff;
}
.tth-am__email:focus {
	outline: none;
	border-color: #2f7a4d;
	box-shadow: 0 0 0 3px rgba( 47, 122, 77, 0.15 );
}
.tth-am__btn {
	flex: 0 0 auto;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: #2f7a4d;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s ease;
}
.tth-am__btn:hover { background: #266440; }
.tth-am__btn:disabled { opacity: 0.6; cursor: default; }
.tth-am__btn.is-loading { color: transparent; position: relative; }
.tth-am__btn.is-loading::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 16px; height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid rgba( 255, 255, 255, 0.5 );
	border-top-color: #fff;
	border-radius: 50%;
	animation: tth-am-spin 0.7s linear infinite;
}
@keyframes tth-am-spin { to { transform: rotate( 360deg ); } }

/* Honeypot — hidden from humans, visible to dumb bots. */
.tth-am__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	opacity: 0;
}
.tth-am__turnstile { margin-top: 12px; }
.tth-am__status {
	margin: 10px 0 0;
	font-size: 14px;
}
.tth-am__status.is-error { color: #b3261e; }
.tth-am__status.is-ok { color: #1f6f43; }
.tth-am__done {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: #1f6f43;
}
