/* =========================================
   TE Brevo â newsletter signup styles
   Editorial register: Georgia body, Arial accents
   ========================================= */

/* ---- Base form ---- */
.te-brevo-form { font-family: Georgia, serif; max-width: 480px; margin: 0; }
.te-brevo-form__label { position: absolute; left: -9999px; }
.te-brevo-form__row { display: flex; gap: 8px; }
.te-brevo-form__input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid #cccccc;
	background: #ffffff;
	font-family: Georgia, serif;
	font-size: 16px;
	color: #1a1a1a;
	border-radius: 0;
	box-shadow: none;
	-webkit-appearance: none;
}
.te-brevo-form__input:focus {
	outline: none;
	border-color: #0033cc;
	box-shadow: 0 0 0 2px rgba(0,51,204,0.15);
}
.te-brevo-form__submit {
	padding: 12px 24px;
	background: #0033cc;
	color: #ffffff;
	border: none;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	cursor: pointer;
	border-radius: 0;
	transition: background 0.15s;
}
.te-brevo-form__submit:hover { background: #002299; }
.te-brevo-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.te-brevo-form__message {
	margin-top: 10px;
	min-height: 20px;
	font-size: 14px;
	font-family: Georgia, serif;
}
.te-brevo-form__message.is-success { color: #2e7d32; }
.te-brevo-form__message.is-error   { color: #c62828; }

/* ---- Footer section ---- */
.te-brevo-footer-section {
	background: #f8f5ee;
	padding: 48px 24px;
	text-align: center;
	border-top: 1px solid #e5e0d3;
}
.te-brevo-footer__inner { max-width: 600px; margin: 0 auto; }
.te-brevo-footer__title {
	font-family: Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 12px;
	color: #1a1a1a;
}
.te-brevo-footer__subtitle {
	font-family: Georgia, serif;
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 24px;
	color: #555555;
}
.te-brevo-footer-section .te-brevo-form { margin: 0 auto; }

/* ---- Post-end form ---- */
.te-brevo-postend {
	margin: 48px 0;
	padding: 32px;
	background: #f8f5ee;
	border-left: 4px solid #0033cc;
}
.te-brevo-postend h2 {
	font-family: Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #1a1a1a;
}
.te-brevo-postend p {
	font-family: Georgia, serif;
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 16px;
	color: #555555;
}

/* ---- Modal ---- */
.te-brevo-modal {
	position: fixed; inset: 0; top: 0; left: 0; right: 0; bottom: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.te-brevo-modal.is-open { display: flex; }
.te-brevo-modal__backdrop {
	position: absolute; inset: 0; top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.65);
	animation: te-fade-in 0.25s ease;
}
.te-brevo-modal__panel {
	position: relative;
	background: #ffffff;
	max-width: 480px;
	width: 100%;
	padding: 48px 36px 36px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	animation: te-slide-up 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes te-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes te-slide-up {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}
.te-brevo-modal__close {
	position: absolute;
	top: 10px; right: 14px;
	background: none;
	border: none;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	color: #999999;
	padding: 4px 8px;
	transition: color 0.15s;
}
.te-brevo-modal__close:hover { color: #1a1a1a; }
.te-brevo-modal__title {
	font-family: Arial, sans-serif;
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 12px;
	color: #1a1a1a;
	line-height: 1.2;
}
.te-brevo-modal__subtitle {
	font-family: Georgia, serif;
	font-size: 15px;
	line-height: 1.55;
	color: #555555;
	margin: 0 0 24px;
}

/* ---- Header "Sign up" link (secondary CTA next to Purchase the Book) ---- */
.te-brevo-header-wrap {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	float: right;
}
.te-brevo-header-link {
	display: inline-block;
	padding: 8px 18px;
	background: transparent;
	color: #0033cc;
	border: 1.5px solid #0033cc;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.4px;
	margin-right: 10px;
	transition: all 0.15s;
	cursor: pointer;
	vertical-align: middle;
}
.te-brevo-header-link:hover,
.te-brevo-header-link:focus {
	background: #0033cc;
	color: #ffffff;
	text-decoration: none;
}

/* ---- /subscribe landing wrapper ---- */
.te-brevo-landing {
	max-width: 520px;
	margin: 40px auto;
}
.te-brevo-landing .te-brevo-form { max-width: 100%; }

/* ---- Mobile ---- */
@media (max-width: 600px) {
	.te-brevo-form__row { flex-direction: column; }
	.te-brevo-form__submit { width: 100%; }
	.te-brevo-modal__panel { padding: 40px 24px 28px; }
	.te-brevo-modal__title { font-size: 22px; }
	.te-brevo-footer-section { padding: 36px 16px; }
	.te-brevo-postend { padding: 24px; margin: 32px 0; }
	.te-brevo-header-link { padding: 6px 12px; font-size: 12px; margin-right: 6px; }
}
