/* Tekfold Newsletter — styles autonomes, aucune dépendance au thème */

.tfk-newsletter__wrap {
	width: 100%;
	padding: 56px 16px 0;
	box-sizing: border-box;
}

.tfk-newsletter__container {
	max-width: 1180px;
	margin: 0 auto;
}

.tfk-newsletter {
	background: #111118;
	color: #f7f7f5;
	border-radius: 12px;
	padding: 40px 32px;
	text-align: center;
	margin: 0 auto;
	max-width: 860px;
	box-sizing: border-box;
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.tfk-newsletter__title {
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-weight: 600;
	font-size: 26px;
	line-height: 1.25;
	margin: 0 0 10px;
	color: #ffffff;
}

.tfk-newsletter__text {
	font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	opacity: 0.78;
	margin: 0 0 22px;
	color: #f7f7f5;
}

.tfk-newsletter__form {
	display: flex;
	gap: 8px;
	max-width: 420px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.tfk-newsletter__input {
	flex: 1 1 200px;
	min-width: 0;
	padding: 12px 16px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #ffffff;
	color: #111118;
	font-size: 15px;
	font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	box-sizing: border-box;
}

.tfk-newsletter__button {
	background: #f0ab2f;
	color: #111118;
	border: none;
	padding: 12px 22px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 15px;
	font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	cursor: pointer;
	transition: background 0.15s ease;
}

.tfk-newsletter__button:hover {
	background: #d99a26;
}

.tfk-newsletter__button:disabled {
	opacity: 0.6;
	cursor: wait;
}

.tfk-newsletter__msg {
	margin: 12px 0 0;
	font-size: 14px;
	font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	line-height: 1.4;
}

.tfk-newsletter__msg.is-success {
	color: #4ade80;
}

.tfk-newsletter__msg.is-error {
	color: #f87171;
}

@media (max-width: 480px) {
	.tfk-newsletter__form {
		flex-direction: column;
	}

	.tfk-newsletter__input,
	.tfk-newsletter__button {
		width: 100%;
	}
}