.ema-ecf-page,
.ema-ecf-page * {
	box-sizing: border-box;
}

body.ema-ecf-hide-theme-chrome #masthead,
body.ema-ecf-hide-theme-chrome .site-header,
body.ema-ecf-hide-theme-chrome .thim-nav-wrapper,
body.ema-ecf-hide-theme-chrome .mobile-menu-wrapper,
body.ema-ecf-hide-theme-chrome .top_site_main,
body.ema-ecf-hide-theme-chrome .page-title,
body.ema-ecf-hide-theme-chrome .entry-header,
body.ema-ecf-hide-theme-chrome #colophon,
body.ema-ecf-hide-theme-chrome .site-footer {
	display: none !important;
}

body.ema-ecf-consultation-page,
body.ema-ecf-consultation-page .site,
body.ema-ecf-consultation-page .site-content,
body.ema-ecf-consultation-page #main-content,
body.ema-ecf-consultation-page .content-area,
body.ema-ecf-consultation-page .site-main,
body.ema-ecf-consultation-page article,
body.ema-ecf-consultation-page .entry-content {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

.ema-ecf-page {
	width: 100%;
	min-height: 100vh;
	background: var(--ema-page-bg, #fff);
	color: var(--ema-text, #152033);
	font-family: var(--ema-body-font, inherit);
	font-size: var(--ema-body-size, 15px);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.ema-ecf-page a {
	color: inherit;
}

.ema-ecf-page svg {
	display: block;
	width: 1em;
	height: 1em;
}

/* Header */
.ema-ecf-header {
	position: relative;
	z-index: 50;
	width: 100%;
	background: rgba(255, 255, 255, .97);
	border-bottom: 1px solid rgba(21, 32, 51, .08);
	backdrop-filter: blur(12px);
}

.ema-ecf-header.is-sticky {
	position: sticky;
	top: 0;
}

.ema-ecf-header-inner {
	width: min(calc(100% - 40px), var(--ema-max-width, 1140px));
	min-height: 72px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.ema-ecf-brand {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	min-width: 0;
	text-decoration: none;
	font-size: 21px;
	font-weight: 750;
	letter-spacing: -.02em;
	color: var(--ema-heading, #173f25);
}

.ema-ecf-brand img {
	display: block;
	width: auto;
	max-width: 225px;
	height: 44px;
	object-fit: contain;
	object-position: left center;
}

.ema-ecf-header-collapsible {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 34px;
}

.ema-ecf-nav,
.ema-ecf-header-actions {
	display: flex;
	align-items: center;
}

.ema-ecf-nav {
	gap: 26px;
}

.ema-ecf-nav a,
.ema-ecf-language,
.ema-ecf-login {
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	transition: color .22s ease, background-color .22s ease, border-color .22s ease;
}

.ema-ecf-nav a:hover,
.ema-ecf-nav a:focus-visible,
.ema-ecf-language:hover,
.ema-ecf-language:focus-visible {
	color: var(--ema-primary, #246b3b);
}

.ema-ecf-header-actions {
	gap: 12px;
}

.ema-ecf-language {
	min-width: 42px;
	padding: 9px 10px;
	text-align: center;
}

.ema-ecf-login {
	min-height: 40px;
	padding: 9px 18px;
	border: 1px solid var(--ema-primary, #246b3b);
	border-radius: 999px;
	color: var(--ema-primary, #246b3b);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ema-ecf-login:hover,
.ema-ecf-login:focus-visible {
	background: var(--ema-primary, #246b3b);
	color: #fff;
}

.ema-ecf-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--ema-border, #d8dee5);
	border-radius: 10px;
	background: #fff;
	color: var(--ema-text, #152033);
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.ema-ecf-menu-toggle svg {
	width: 22px;
	height: 22px;
}

.ema-ecf-menu-close {
	display: none;
}

.ema-ecf-menu-toggle[aria-expanded="true"] .ema-ecf-menu-open {
	display: none;
}

.ema-ecf-menu-toggle[aria-expanded="true"] .ema-ecf-menu-close {
	display: inline-flex;
}

/* Main page */
.ema-ecf-main {
	width: 100%;
	padding: 34px 20px 72px;
}

.ema-ecf-section {
	width: min(100%, var(--ema-max-width, 1140px));
	margin: 0 auto;
}

.ema-ecf-intro {
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
}

.ema-ecf-intro h1 {
	margin: 0;
	color: var(--ema-heading, #173f25);
	font-family: var(--ema-heading-font, Georgia, serif);
	font-size: clamp(40px, 5vw, var(--ema-heading-size, 58px));
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -.035em;
}

.ema-ecf-intro p {
	margin: 14px 0 0;
	color: var(--ema-muted, #6b7484);
	font-size: clamp(16px, 1.55vw, 18px);
	font-weight: 450;
	line-height: 1.55;
}

/* Benefits */
.ema-ecf-benefits {
	width: min(100%, 780px);
	margin: 24px auto 28px;
	display: grid;
	grid-template-columns: repeat(var(--ema-benefit-count, 3), minmax(0, 1fr));
	align-items: center;
}

.ema-ecf-benefit {
	position: relative;
	min-width: 0;
	min-height: 66px;
	padding: 4px 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.ema-ecf-benefit:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 16px;
	bottom: 16px;
	width: 1px;
	background: rgba(21, 32, 51, .14);
}

.ema-ecf-benefit-icon,
.ema-ecf-info-icon {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--ema-soft, #f0f7f1);
	color: var(--ema-primary, #246b3b);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ema-ecf-benefit-icon svg,
.ema-ecf-info-icon svg {
	width: 27px;
	height: 27px;
}

.ema-ecf-benefit-copy {
	min-width: 0;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	line-height: 1.35;
	text-align: left;
}

.ema-ecf-benefit-copy strong,
.ema-ecf-benefit-copy span {
	font-weight: 520;
}

/* Form and info card */
.ema-ecf-content-grid {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 272px;
	align-items: start;
	gap: 42px;
}

.ema-ecf-content-grid.has-no-info {
	grid-template-columns: minmax(0, 820px);
	justify-content: center;
}

.ema-ecf-form-card,
.ema-ecf-info-card {
	background: var(--ema-card-bg, #fff);
	border: 1px solid var(--ema-border, #d8dee5);
	border-radius: var(--ema-card-radius, 16px);
	box-shadow: 0 10px 30px rgba(20, 46, 30, .045);
}

.ema-ecf-form-card {
	min-width: 0;
	padding: 24px 28px 22px;
}

.ema-ecf-form {
	width: 100%;
	margin: 0;
}

.ema-ecf-field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 24px;
	row-gap: 16px;
}

.ema-ecf-field,
.ema-ecf-consent-field {
	min-width: 0;
}

.ema-ecf-field.ema-ecf-full,
.ema-ecf-consent-field.ema-ecf-full,
.ema-ecf-interest-field {
	margin-top: 16px;
}

.ema-ecf-field label,
.ema-ecf-field legend {
	display: block;
	margin: 0 0 7px;
	padding: 0;
	color: var(--ema-text, #152033);
	font-size: 13.5px;
	font-weight: 650;
	line-height: 1.35;
}

.ema-ecf-interest-field {
	min-width: 0;
	padding: 0;
	border: 0;
}

.ema-ecf-required {
	color: var(--ema-error, #c7353e);
}

.ema-ecf-label-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.ema-ecf-character-counter {
	flex: 0 0 auto;
	color: var(--ema-muted, #6b7484);
	font-size: 11.5px;
	font-weight: 500;
}

.ema-ecf-field input[type="text"],
.ema-ecf-field input[type="email"],
.ema-ecf-field input[type="tel"],
.ema-ecf-field select,
.ema-ecf-field textarea {
	width: 100%;
	margin: 0;
	border: 1px solid var(--ema-border, #d8dee5);
	border-radius: var(--ema-input-radius, 7px);
	background: #fff;
	color: var(--ema-text, #152033);
	font: inherit;
	font-size: 14px;
	line-height: 1.45;
	box-shadow: none;
	outline: none;
	transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.ema-ecf-field input[type="text"],
.ema-ecf-field input[type="email"],
.ema-ecf-field input[type="tel"],
.ema-ecf-field select {
	height: 46px;
	padding: 0 13px;
}

.ema-ecf-field textarea {
	min-height: 104px;
	max-height: 380px;
	padding: 12px 13px;
	resize: vertical;
	overflow-y: auto;
}

.ema-ecf-field input::placeholder,
.ema-ecf-field textarea::placeholder {
	color: #8a929e;
	opacity: 1;
}

.ema-ecf-field input:hover,
.ema-ecf-field select:hover,
.ema-ecf-field textarea:hover {
	border-color: #b8c1ca;
}

.ema-ecf-field input:focus,
.ema-ecf-field select:focus,
.ema-ecf-field textarea:focus,
.ema-ecf-interest-card input:focus-visible + .ema-ecf-interest-content,
.ema-ecf-consent input:focus-visible + .ema-ecf-checkbox-ui,
.ema-ecf-menu-toggle:focus-visible,
.ema-ecf-page a:focus-visible,
.ema-ecf-submit:focus-visible {
	outline: none;
	border-color: var(--ema-primary, #246b3b);
	box-shadow: 0 0 0 3px var(--ema-focus, rgba(36, 107, 59, .18));
}

.ema-ecf-select-wrap {
	position: relative;
}

.ema-ecf-select-wrap::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 1.7px solid currentColor;
	border-bottom: 1.7px solid currentColor;
	transform: translateY(-68%) rotate(45deg);
	pointer-events: none;
}

.ema-ecf-field select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 42px;
	cursor: pointer;
}

/* Interest cards */
.ema-ecf-interest-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.ema-ecf-interest-card {
	position: relative;
	min-width: 0;
	margin: 0;
	cursor: pointer;
}

.ema-ecf-interest-card input {
	position: absolute;
	inset: 0 auto auto 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.ema-ecf-interest-content {
	position: relative;
	width: 100%;
	min-height: 58px;
	padding: 10px 14px;
	border: 1px solid var(--ema-border, #d8dee5);
	border-radius: 10px;
	background: #fff;
	color: var(--ema-text, #152033);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	transition: border-color .23s ease, background-color .23s ease, box-shadow .23s ease;
}

.ema-ecf-interest-card:hover .ema-ecf-interest-content {
	border-color: #9ec6aa;
	box-shadow: 0 5px 16px rgba(36, 107, 59, .08);
}

.ema-ecf-interest-card.is-selected .ema-ecf-interest-content {
	border-color: var(--ema-primary, #246b3b);
	background: var(--ema-soft-selected, #f5faf6);
	box-shadow: 0 0 0 1px rgba(36, 107, 59, .05);
}

.ema-ecf-interest-icon {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	color: var(--ema-primary, #246b3b);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ema-ecf-interest-icon svg {
	width: 23px;
	height: 23px;
}

.ema-ecf-interest-label {
	min-width: 0;
	font-size: 12.5px;
	font-weight: 550;
	line-height: 1.25;
}

.ema-ecf-selected-indicator {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: var(--ema-primary, #246b3b);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(.8);
	transition: opacity .2s ease, transform .2s ease;
}

.ema-ecf-selected-indicator svg {
	width: 11px;
	height: 11px;
	stroke-width: 2.4;
}

.ema-ecf-interest-card.is-selected .ema-ecf-selected-indicator {
	opacity: 1;
	transform: scale(1);
}

/* Consent and validation */
.ema-ecf-consent {
	position: relative;
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.ema-ecf-consent input {
	position: absolute;
	left: 2px;
	top: 2px;
	width: 18px;
	height: 18px;
	opacity: 0;
}

.ema-ecf-checkbox-ui {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border: 1px solid var(--ema-border, #d8dee5);
	border-radius: 5px;
	background: #fff;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.ema-ecf-checkbox-ui svg {
	width: 13px;
	height: 13px;
	opacity: 0;
}

.ema-ecf-consent input:checked + .ema-ecf-checkbox-ui {
	border-color: var(--ema-primary, #246b3b);
	background: var(--ema-primary, #246b3b);
}

.ema-ecf-consent input:checked + .ema-ecf-checkbox-ui svg {
	opacity: 1;
}

.ema-ecf-consent-text {
	color: #364153;
	font-size: 12.8px;
	font-weight: 430;
	line-height: 1.5;
}

.ema-ecf-consent-text a {
	color: var(--ema-primary, #246b3b);
	font-weight: 570;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.ema-ecf-field-error {
	margin: 6px 0 0;
	color: var(--ema-error, #c7353e);
	font-size: 12px;
	font-weight: 580;
	line-height: 1.35;
}

.ema-ecf-field-error:empty {
	display: none;
}

.ema-ecf-field.is-invalid input,
.ema-ecf-field.is-invalid select,
.ema-ecf-field.is-invalid textarea,
.ema-ecf-consent-field.is-invalid .ema-ecf-checkbox-ui {
	border-color: var(--ema-error, #c7353e);
}

.ema-ecf-interest-field.is-invalid .ema-ecf-interest-content {
	border-color: var(--ema-error, #c7353e);
}

.ema-ecf-status {
	display: none;
	margin: 16px 0 0;
	padding: 12px 14px;
	border-radius: 9px;
	font-size: 13px;
	font-weight: 560;
	line-height: 1.45;
}

.ema-ecf-status.is-success,
.ema-ecf-status.is-error {
	display: block;
}

.ema-ecf-status.is-success {
	border: 1px solid #a7d4b3;
	background: #f1f9f3;
	color: #185b31;
}

.ema-ecf-status.is-error {
	border: 1px solid #e5a4aa;
	background: #fff5f5;
	color: #9f2530;
}

.ema-ecf-honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* Submit and trust row */
.ema-ecf-actions {
	margin-top: 16px;
	display: flex;
	justify-content: center;
}

.ema-ecf-submit {
	position: relative;
	width: min(100%, 430px);
	min-height: 50px;
	padding: 12px 54px 12px 24px;
	border: 0;
	border-radius: 8px;
	background: var(--ema-primary, #246b3b);
	color: #fff;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 5px 14px rgba(36, 107, 59, .16);
	transition: background-color .23s ease, box-shadow .23s ease, transform .23s ease;
}

.ema-ecf-submit:not(:disabled):hover {
	background: var(--ema-primary-hover, #1c5730);
	box-shadow: 0 7px 18px rgba(36, 107, 59, .2);
}

.ema-ecf-submit:not(:disabled):hover .ema-ecf-submit-icon {
	transform: translateX(2px);
}

.ema-ecf-submit:disabled {
	background: var(--ema-disabled, #aeb4ba);
	color: rgba(255, 255, 255, .92);
	box-shadow: none;
	cursor: not-allowed;
}

.ema-ecf-submit-icon {
	position: absolute;
	right: 22px;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .22s ease, opacity .22s ease;
}

.ema-ecf-submit-icon svg {
	width: 19px;
	height: 19px;
}

.ema-ecf-spinner {
	position: absolute;
	right: 22px;
	top: 50%;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	border: 2px solid rgba(255, 255, 255, .42);
	border-top-color: #fff;
	border-radius: 50%;
	opacity: 0;
	animation: ema-ecf-spin .75s linear infinite;
}

.ema-ecf-submit.is-loading .ema-ecf-submit-icon {
	opacity: 0;
}

.ema-ecf-submit.is-loading .ema-ecf-spinner {
	opacity: 1;
}

@keyframes ema-ecf-spin {
	to { transform: rotate(360deg); }
}

.ema-ecf-trust-row {
	max-width: 620px;
	margin: 14px auto 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	color: var(--ema-muted, #6b7484);
	font-size: 11.8px;
	line-height: 1.4;
}

.ema-ecf-trust-row > div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	text-align: center;
}

.ema-ecf-trust-row > div > span {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	color: var(--ema-primary, #246b3b);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ema-ecf-trust-row svg {
	width: 18px;
	height: 18px;
}

/* Information card */
.ema-ecf-info-card {
	position: sticky;
	top: 96px;
	width: 100%;
	padding: 22px 18px;
	background: var(--ema-info-bg, #fff);
}

.ema-ecf-info-top,
.ema-ecf-info-contact {
	display: flex;
	align-items: flex-start;
	gap: 13px;
}

.ema-ecf-info-card .ema-ecf-info-icon {
	width: 44px;
	height: 44px;
}

.ema-ecf-info-card .ema-ecf-info-icon svg {
	width: 23px;
	height: 23px;
}

.ema-ecf-info-top > div,
.ema-ecf-info-contact > div {
	min-width: 0;
	padding-top: 2px;
	display: flex;
	flex-direction: column;
}

.ema-ecf-info-card strong,
.ema-ecf-info-card h2 {
	margin: 0;
	color: var(--ema-text, #152033);
	font-size: 12.5px;
	font-weight: 720;
	line-height: 1.4;
}

.ema-ecf-info-card span,
.ema-ecf-info-card a,
.ema-ecf-info-card li {
	font-size: 12px;
	line-height: 1.5;
}

.ema-ecf-info-top span,
.ema-ecf-info-contact span {
	margin-top: 2px;
	color: #394456;
}

.ema-ecf-info-divider {
	height: 1px;
	margin: 18px 0;
	background: rgba(21, 32, 51, .12);
}

.ema-ecf-info-expect h2 {
	margin-bottom: 12px;
	color: var(--ema-heading, #173f25);
}

.ema-ecf-info-expect ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
}

.ema-ecf-info-expect li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #465164;
}

.ema-ecf-info-expect li svg {
	flex: 0 0 15px;
	width: 15px;
	height: 15px;
	margin-top: 2px;
	color: var(--ema-primary, #246b3b);
	stroke-width: 2.4;
}

.ema-ecf-info-contact a {
	margin-top: 2px;
	color: var(--ema-primary, #246b3b);
	font-weight: 650;
	text-decoration: none;
	word-break: break-word;
}

.ema-ecf-info-contact a:hover,
.ema-ecf-info-contact a:focus-visible {
	text-decoration: underline;
}

/* Footer */
.ema-ecf-footer {
	border-top: 1px solid rgba(21, 32, 51, .1);
	background: #fbfcfb;
}

.ema-ecf-footer-inner {
	width: min(calc(100% - 40px), var(--ema-max-width, 1140px));
	min-height: 78px;
	margin: 0 auto;
	padding: 18px 0;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	color: var(--ema-muted, #6b7484);
	font-size: 12px;
}

.ema-ecf-footer-links,
.ema-ecf-footer-contact {
	display: flex;
	align-items: center;
	gap: 15px;
}

.ema-ecf-footer-links {
	justify-content: center;
}

.ema-ecf-footer-contact {
	justify-content: flex-end;
	flex-wrap: wrap;
}

.ema-ecf-footer a {
	color: var(--ema-text, #152033);
	font-weight: 520;
	text-decoration: none;
}

.ema-ecf-footer a:hover,
.ema-ecf-footer a:focus-visible {
	color: var(--ema-primary, #246b3b);
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 1080px) {
	.ema-ecf-content-grid {
		grid-template-columns: minmax(0, 1fr) 250px;
		gap: 28px;
	}

	.ema-ecf-interest-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ema-ecf-benefit {
		padding-inline: 24px;
	}
}

@media (max-width: 900px) {
	.ema-ecf-menu-toggle {
		display: inline-flex;
	}

	.ema-ecf-header-inner {
		min-height: 66px;
		position: relative;
	}

	.ema-ecf-header-collapsible {
		position: absolute;
		left: 0;
		right: 0;
		top: calc(100% + 1px);
		display: none;
		padding: 18px;
		border: 1px solid var(--ema-border, #d8dee5);
		border-top: 0;
		border-radius: 0 0 14px 14px;
		background: #fff;
		box-shadow: 0 15px 30px rgba(21, 32, 51, .1);
	}

	.ema-ecf-header-collapsible.is-open {
		display: grid;
		gap: 18px;
	}

	.ema-ecf-nav {
		align-items: stretch;
		display: grid;
		gap: 2px;
	}

	.ema-ecf-nav a {
		padding: 10px 8px;
		border-radius: 7px;
	}

	.ema-ecf-nav a:hover,
	.ema-ecf-nav a:focus-visible {
		background: var(--ema-soft, #f0f7f1);
	}

	.ema-ecf-header-actions {
		justify-content: flex-start;
		border-top: 1px solid var(--ema-border, #d8dee5);
		padding-top: 14px;
	}

	.ema-ecf-content-grid,
	.ema-ecf-content-grid.has-no-info {
		width: min(100%, 800px);
		margin-inline: auto;
		grid-template-columns: minmax(0, 1fr);
	}

	.ema-ecf-info-card {
		position: static;
		width: 100%;
	}

	.ema-ecf-footer-inner {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 12px;
	}

	.ema-ecf-footer-links,
	.ema-ecf-footer-contact {
		justify-content: center;
	}
}

@media (max-width: 720px) {
	.ema-ecf-main {
		padding: 28px 16px 54px;
	}

	.ema-ecf-intro h1 {
		font-size: clamp(36px, 10vw, 48px);
	}

	.ema-ecf-benefits {
		width: min(100%, 520px);
		grid-template-columns: 1fr;
		margin-top: 22px;
	}

	.ema-ecf-benefit {
		justify-content: flex-start;
		padding: 9px 22px;
	}

	.ema-ecf-benefit:not(:last-child)::after {
		left: 22px;
		right: 22px;
		top: auto;
		bottom: 0;
		width: auto;
		height: 1px;
	}

	.ema-ecf-form-card {
		padding: 22px 20px 20px;
	}

	.ema-ecf-field-grid {
		grid-template-columns: 1fr;
	}

	.ema-ecf-trust-row {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.ema-ecf-trust-row > div {
		justify-content: flex-start;
		text-align: left;
	}
}

@media (max-width: 520px) {
	.ema-ecf-header-inner,
	.ema-ecf-footer-inner {
		width: min(calc(100% - 28px), var(--ema-max-width, 1140px));
	}

	.ema-ecf-brand img {
		max-width: 190px;
		height: 39px;
	}

	.ema-ecf-main {
		padding-inline: 12px;
	}

	.ema-ecf-form-card,
	.ema-ecf-info-card {
		border-radius: 12px;
	}

	.ema-ecf-form-card {
		padding: 20px 15px 18px;
	}

	.ema-ecf-interest-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.ema-ecf-interest-content {
		min-height: 66px;
		padding: 10px 8px;
		flex-direction: column;
		gap: 5px;
	}

	.ema-ecf-interest-label {
		font-size: 11.8px;
	}

	.ema-ecf-label-row {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}

	.ema-ecf-submit {
		width: 100%;
		font-size: 14px;
	}

	.ema-ecf-footer-links {
		flex-wrap: wrap;
	}
}

@media (max-width: 360px) {
	.ema-ecf-interest-grid {
		grid-template-columns: 1fr;
	}

	.ema-ecf-interest-content {
		min-height: 54px;
		flex-direction: row;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ema-ecf-page *,
	.ema-ecf-page *::before,
	.ema-ecf-page *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Common Eduma/LearnPress full-width page wrappers. */
body.ema-ecf-consultation-page .site-content > .container,
body.ema-ecf-consultation-page #main > .container,
body.ema-ecf-consultation-page .content-area > .container,
body.ema-ecf-consultation-page .site-main > .container,
body.ema-ecf-consultation-page .entry-content > .container {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.ema-ecf-consultation-page .site-content > .container > .row,
body.ema-ecf-consultation-page #main > .container > .row {
	margin: 0;
}

body.ema-ecf-consultation-page .site-content > .container > .row > [class*="col-"],
body.ema-ecf-consultation-page #main > .container > .row > [class*="col-"] {
	width: 100%;
	max-width: none;
	padding: 0;
}
