/*=========================
	SITE FOOTER
=========================*/

.site-footer {
	color: var(--color-n-black);
	font-family: inherit;
}

.site-footer .container {
	max-width: none;
	width: 100%;
	margin: 0;
	padding-left: var(--container-px);
	padding-right: var(--container-px);
}

/* ---------- 1. Contact / Newsletter ---------- */
.site-footer__contact > .container {
	/* Full-bleed across viewport edges, ignore the global container constraints */
	max-width: none;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.site-footer__newsletter {
	padding: 13.6rem 9.6rem;
}
.site-footer__newsletter h2 {
	/* font-size: 50px !important; */
	margin: 0 0 5rem;
}

/* ---- Gravity Forms styling — matches qld.guidedogs.com.au ---- */
.site-footer__form .gform_wrapper {
	margin: 0;
}
.site-footer__form .gform_required_legend {
	display: none;
}
.site-footer__form .gform_fields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-footer__form .gfield {
	margin: 0;
	padding: 0;
}
/* Force any field flagged full-width (or by Gravity's own class) onto its own row */
.site-footer__form .gfield--width-full,
.site-footer__form .gfield.gfield--width-full,
.site-footer__form .gfield_consent,
.site-footer__form .gfield_html,
.site-footer__form .gfield_section {
	grid-column: 1 / -1;
}

.site-footer__form .gfield_label {
	display: block;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 6px;
	color: var(--color-n-black, #282829);
}
.site-footer__form .gfield_required {
	color: #000;
	font-weight: 700;
	margin-left: 2px;
}
.site-footer__form .gfield_required .gfield_required_text {
	display: none; /* hide the "(Required)" sr-only text the live site hides */
}

/* Inputs / selects / textareas — borderless on white fill */
.site-footer__form .gform_wrapper input[type="text"],
.site-footer__form .gform_wrapper input[type="email"],
.site-footer__form .gform_wrapper input[type="tel"],
.site-footer__form .gform_wrapper input[type="url"],
.site-footer__form .gform_wrapper input[type="number"],
.site-footer__form .gform_wrapper input[type="password"],
.site-footer__form .gform_wrapper input[type="date"],
.site-footer__form .gform_wrapper select,
.site-footer__form .gform_wrapper textarea {
	width: 100%;
	background-color: #f6f6f8;
	border: 0;
	border-radius: 0;
	padding: 15px 20px;
	font: inherit;
	color: var(--color-n-black, #282829);
	transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0, 1);
}
.site-footer__form .gform_wrapper input::placeholder,
.site-footer__form .gform_wrapper textarea::placeholder {
	color: #69696a;
	opacity: 1;
}
.site-footer__form .gform_wrapper input:focus,
.site-footer__form .gform_wrapper select:focus,
.site-footer__form .gform_wrapper textarea:focus {
	outline: none;
	box-shadow: inset 0 0 0 2px var(--color-p, #ff6e33);
}
.site-footer__form .gform_wrapper textarea {
	min-height: 140px;
	resize: vertical;
}

/* Validation states */
.site-footer__form .gfield_error input,
.site-footer__form .gfield_error select,
.site-footer__form .gfield_error textarea {
	box-shadow: inset 0 0 0 2px var(--color-m-error, #ee0004);
}
.site-footer__form .gfield_validation_message,
.site-footer__form .validation_message {
	color: var(--color-m-error, #ee0004);
	font-size: 1.4rem;
	margin-top: 6px;
}

/* Validation summary at top of form */
.site-footer__form .gform_validation_errors {
	background: #fff;
	border-left: 4px solid var(--color-m-error, #ee0004);
	padding: 12px 16px;
	margin-bottom: var(--space-3, 16px);
}
.site-footer__form .gform_validation_errors h2 {
	font-size: 1.6rem;
	margin: 0;
	color: var(--color-m-error, #ee0004);
}

/* Confirmation message */
.site-footer__form .gform_confirmation_message {
	/* live shows a plain "Thank you" — no boxed alert */
	background: none;
	border: 0;
	padding: 0;
	color: var(--color-n-black, #282829);
	font-size: 1.7rem;
}

/* ---- Submit button: charcoal pill with arrow, matching live "Choose your preferences" ---- */
.site-footer__form .gform_footer {
	margin: 5rem 0 0;
	padding: 0;
	display: flex;
}
/* Footer newsletter submit button — black pill */
.site-footer__form .gform_footer .gform_button,
.site-footer__form .gform_footer button {
	align-items: center;
	background: var(--color-n-black, #282829);
	border: none;
	border-radius: 100px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 1.8rem;
	font-weight: 600;
	gap: 10px;
	line-height: 1.3;
	padding: 1.1em 2.6em;
	transition: opacity 0.2s ease;
}
.site-footer__form .gform_footer .gform_button::after,
.site-footer__form .gform_footer button::after {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 19 19' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5.576 7.914 2.163 14.19 8.45H.5v2.25h13.691l-6.277 6.29L9.5 18.575l9-9-9-9z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 14px;
	width: 14px;
}
.site-footer__form .gform_footer .gform_button:hover,
.site-footer__form .gform_footer button:hover {
	opacity: 0.85;
}

/* Honeypot / hidden helper rows shouldn't reserve grid space */
.site-footer__form .gform_validation_container,
.site-footer__form .gfield--type-html:empty,
.site-footer__form .gfield_visibility_hidden {
	display: none !important;
}

/* AJAX spinner */
.site-footer__form .gform_ajax_spinner {
	margin-left: 12px;
}

@media only screen and (max-width: 479.98px) {
	.site-footer__form .gform_fields {
		grid-template-columns: 1fr;
	}
}

.site-footer__contact-info {
	background: #f1f1f3;
	display: flex;
	flex-direction: column;
}
.site-footer__contact-info .row {
	padding: 10rem 9.6rem;
	flex: 1 1 auto;
}
.site-footer__contact-info .u-h4 {
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.25em;
	margin: 0 0 var(--space-3, 16px);
}
.site-footer__contact-info .list--unstyled {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.site-footer__contact-info .list--unstyled li {
	display: flex;
	align-items: center;
	gap: 40px;
}
.site-footer__contact-info .list--unstyled a,
.site-footer__contact-info .list--unstyled a:link,
.site-footer__contact-info .list--unstyled a:visited,
.site-footer__contact-info .list--unstyled a .border-bot-sweep__elem {
	color: #282829;
	font-size: 20px;
	font-weight: 600;
}

/* border-bot-sweep--reverse: full-width underline at rest, recedes on hover */
.site-footer__contact-info .list--unstyled a .border-bot-sweep__elem,
.border-bot-sweep--reverse .border-bot-sweep__elem,
.border-bot-sweep--reverse {
	display: inline;
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 100% 2px;
	transition: background-size 0.35s cubic-bezier(0.4, 0, 0, 1);
	padding-bottom: 2px;
	text-decoration: none;
}
.site-footer__contact-info .list--unstyled a:hover .border-bot-sweep__elem,
.site-footer__contact-info .list--unstyled a:focus-visible .border-bot-sweep__elem,
.border-bot-sweep--reverse:hover .border-bot-sweep__elem,
.border-bot-sweep--reverse:focus-visible .border-bot-sweep__elem {
	background-size: 0% 2px;
}

/* Circular brand-colored icon button (matches live c-btn-circle) */
.site-footer__contact-info .c-btn-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	min-width: 4rem;
	border-radius: 50%;
	flex-shrink: 0;
	color: #fff;
}
.site-footer__contact-info .c-btn-circle .c-icon,
.site-footer__contact-info .c-btn-circle svg {
	display: inline-flex;
	align-items: center;
	width: 1.8rem;
	height: 1.8rem;
}
.site-footer__contact-info .c-btn-circle--pink {
	background: #fcbbe0;
	color: var(--color-n-black, #282829);
}
.site-footer__contact-info .c-btn-circle--green {
	background: #01b483;
	color: var(--color-n-black, #282829);
}
.site-footer__contact-info .c-btn-circle--blue-light {
	background: #a4dbde;
	color: var(--color-n-black, #282829);
}

/* Map — full-bleed on the right side */
.newsletter-signup__map {
	margin-top: auto;
}
.newsletter-signup__link {
	display: block;
}
.site-footer__map,
.c-map-ratio {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	min-height: 220px;
}
.site-footer__map img,
.c-map-ratio img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border: 0;
}
.u-object-fit {
	object-fit: cover;
}

/* ---------- 2. Main footer (dark) ---------- */
.site-footer__main {
	background: var(--color-n-black, #282829);
	color: #fff;
	padding-top: 13.5rem;
	padding-bottom: var(--space-6, 48px);
}
.site-footer__brand {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: var(--space-7, 100px);
	row-gap: var(--space-4, 24px);
	align-items: center;
	margin-bottom: var(--space-6, 48px);
}
.site-footer__logo {
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: start;
}
.site-footer__logo img {
	width: 322px;
	height: auto;
	display: block;
}
/* Acknowledgement + social stacked on the far right, left-aligned as a group */
.site-footer__brand-right {
	grid-column: 2;
	grid-row: 1 / span 2;
	justify-self: end;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-4, 24px);
	max-width: 560px;
}
.site-footer__acknowledgement {
	margin: 0;
	font-size: 17px;
	line-height: 1.6;
	color: #fff;
	text-align: left;
}
.site-footer__social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 24px;
}
@media only screen and (max-width: 767.98px) {
	.site-footer__brand {
		grid-template-columns: 1fr;
	}
	.site-footer__logo {
		grid-row: auto;
	}
	.site-footer__brand-right {
		grid-column: 1;
		grid-row: 2;
		justify-self: start;
		max-width: 100%;
	}
}

/* Per-platform brand color — exact hex pulled from live site (qld.guidedogs.com.au)
   c-btn-circle--blue-light / --pink / --grey / --green classes */
.site-footer__social-item.is-facebook {
	--social-bg: #a4dbde;
} /* blue-light */
.site-footer__social-item.is-instagram {
	--social-bg: #fcbbe0;
} /* pink */
.site-footer__social-item.is-linkedin {
	--social-bg: #f1f1f3;
} /* grey */
.site-footer__social-item.is-tiktok {
	--social-bg: #f8a087;
} /* peach (matches live) */
.site-footer__social-item.is-twitter,
.site-footer__social-item.is-x {
	--social-bg: var(--color-s, #01b483);
}
.site-footer__social-item.is-youtube {
	--social-bg: #a4dbde;
} /* blue-light */
.site-footer__social-item.is-default {
	--social-bg: var(--color-p, #ff6e33);
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--social-bg, var(--color-p));
	border: 2px solid var(--social-bg, var(--color-p));
	transition:
		transform 0.2s cubic-bezier(0.4, 0, 0, 1),
		box-shadow 0.2s ease;
	color: var(--color-n-black, #282829);
}
.site-footer__social a:hover,
.site-footer__social a:focus-visible {
	transform: rotate(-8deg) scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.site-footer__social img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	/* SVGs use fill="currentColor" — force them solid black inside the colored circle */
	filter: brightness(0);
	opacity: 1;
}

.site-footer__nav {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-5, 32px);
}
.site-footer__col-title {
	color: #fff;
	margin: 0 0 var(--space-3, 16px);
	font-weight: 700;
}
.site-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.site-footer__col a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 1.8rem;
	line-height: 1.5;
	transition:
		background-size 0.35s cubic-bezier(0.4, 0, 0, 1),
		color 0.2s cubic-bezier(0.4, 0, 0, 1);
}

/* Per-column accent (mirrors live u-color-hover-focus--{pink|blue-light|peach|green}) */
.site-footer__col--1 {
	--col-accent: #fcbbe0;
} /* Get Support  → pink */
.site-footer__col--2 {
	--col-accent: #a4dbde;
} /* Get Involved → blue-light */
.site-footer__col--3 {
	--col-accent: #f8a087;
} /* Get Resources → peach */
.site-footer__col--4 {
	--col-accent: #01b483;
} /* About Us     → green */

.site-footer__col a:hover,
.site-footer__col a:focus-visible {
	color: var(--col-accent, #fff);
}

/* Column title: same accent + underline-sweep on hover as the links below it */
.site-footer__col-title .border-bot-sweep__elem {
	display: inline;
	background-image: linear-gradient(currentColor, currentColor);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 0% 3px;
	transition:
		background-size 0.35s cubic-bezier(0.4, 0, 0, 1),
		color 0.2s cubic-bezier(0.4, 0, 0, 1);
	padding-bottom: 2px;
}
.site-footer__col-title:hover,
.site-footer__col .site-footer__col-title:hover {
	color: var(--col-accent, #fff);
}
.site-footer__col-title:hover .border-bot-sweep__elem,
.site-footer__col-title:focus-within .border-bot-sweep__elem {
	background-position: left bottom;
	background-size: 100% 3px;
}

/* Border-bottom-sweep: underline slides in from the left on hover,
   then slides out to the right on leave. The anchor swaps right↔left
   while the line is collapsed (0%), so the swap itself is never visible —
   only background-size is transitioned, never background-position. */
.border-bot-sweep {
	display: inline;
	background-image: linear-gradient(currentColor, currentColor);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: 0% 3px;
	transition:
		background-size 0.35s cubic-bezier(0.4, 0, 0, 1),
		color 0.2s cubic-bezier(0.4, 0, 0, 1);
	padding-bottom: 2px;
}
/* Footer column links: 1px sweep line */
.site-footer__col a.border-bot-sweep {
	background-size: 0% 1px;
}
.site-footer__col .border-bot-sweep:hover,
.site-footer__col .border-bot-sweep:focus-visible {
	color: var(--col-accent, #fff);
	background-position: left bottom;
	background-size: 100% 1px;
}

/* ---------- 3. Bottom bar ---------- */
.site-footer__bottom {
	background: #000;
	color: rgba(255, 255, 255, 0.85);
	min-height: 80px;
	display: flex;
	align-items: center;
	font-size: 1.4rem;
}
.site-footer__bottom > .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4, 24px);
	flex-wrap: wrap;
	width: 100%;
}

/* Left — partner badges */
.site-footer__bottom-left {
	display: flex;
	align-items: center;
}
.site-footer__partner {
	display: flex;
	align-items: center;
	gap: 30px;
}
.site-footer__partner img {
	display: block;
	height: 49px;
	width: auto;
}

/* Center — links + meta */
.site-footer__bottom-center {
	flex: 1;
	display: flex;
	justify-content: center;
}
.site-footer__bottom-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 0;
	align-items: center;
	justify-content: center;
}
.site-footer__bottom-nav li {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}
.site-footer__bottom-nav li:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 20px;
	background: #fff;
	margin: 0 16px;
	user-select: none;
	pointer-events: none;
}
.site-footer__bottom-nav a,
.site-footer__bottom-nav span {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.6rem;
	line-height: 1.5;
	text-decoration: none;
}
.site-footer__bottom-nav a {
	border-bottom: 1px solid transparent;
	transition:
		border-color 0.2s ease,
		color 0.15s ease;
}
.site-footer__bottom-nav a:hover,
.site-footer__bottom-nav a:focus-visible {
	color: #fff;
	border-bottom-color: currentColor;
}

/* Right — GD initials mark */
.site-footer__bottom-right {
	display: flex;
	align-items: center;
}
.site-footer__gd-mark {
	display: inline-flex;
	color: #fff;
}
.site-footer__gd-mark .c-icon,
.site-footer__gd-mark svg {
	display: block;
	width: 57px;
	height: 27px;
	color: inherit;
}
@media only screen and (max-width: 1199.98px) {
	.site-footer__gd-mark .c-icon,
	.site-footer__gd-mark svg {
		height: 14px;
	}
}

@media only screen and (max-width: 767.98px) {
	.site-footer__bottom {
		padding-top: var(--space-5);
		padding-bottom: var(--space-5);
	}
	.site-footer__bottom > .container {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	.site-footer__bottom-nav ul {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: var(--space-1);
	}
	.site-footer__bottom-nav li:not(:last-child)::after {
		display: none;
	}
	.site-footer__gd-mark .c-icon,
	.site-footer__gd-mark svg {
		height: 40px;
		width: auto;
	}
}

/* ---------- responsive ---------- */
/* Tablet (up to 1199px): nav drops to 2 columns with space-6 gap */
@media only screen and (max-width: 1199.98px) {
	.site-footer__nav {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-6);
	}
}
/* Below 768px: nav stacks to 1 column */
@media only screen and (max-width: 767.98px) {
	.site-footer__nav {
		grid-template-columns: 1fr;
	}
}
/* Mobile through tablet (up to 1199px): logo+social row stacks */
@media only screen and (max-width: 1199.98px) {
	.site-footer__contact > .container {
		grid-template-columns: 1fr;
	}
	/* Use the standard container padding + reduce vertical padding for tablet+mobile */
	.site-footer__newsletter {
		padding: var(--space-6) var(--container-px);
	}
	.site-footer__contact-info .row {
		padding: var(--space-6) var(--container-px);
	}
	.site-footer__main {
		padding-top: var(--space-6);
		padding-bottom: var(--space-5);
	}
}

@media only screen and (max-width: 479.98px) {
	.site-footer__newsletter {
		padding: var(--space-4, 24px);
	}
	.site-footer__contact-info {
		padding: 24px 0;
	}
	.site-footer__form .row {
		grid-template-columns: 1fr;
	}
	.site-footer__nav {
		grid-template-columns: 1fr;
	}
	.site-footer__brand {
		justify-content: center;
		text-align: center;
	}
	.site-footer__bottom > .container {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* LIVE'S ACTUAL LOTTIE LOGO (James, 2026-07-16): braille-logo-white-gda.json
   (white variant for the charcoal footer), HOVER ONLY (per James
   2026-07-22): no load animation, plays forward on hover, reverses on
   hover-out via global/js/lottie-logo.js. Static horizontal <img> = no-JS
   fallback; stacked mobile mark stays an <img>. */
.site-footer__logo-lottie {
	display: none;
	height: 75px;
	line-height: 0;
}
.site-footer__logo-lottie svg {
	display: block;
	height: 100%;
	width: auto;
}
@media (min-width: 768px) {
	.site-footer__logo.has-lottie .site-footer__logo-lottie {
		display: block;
	}
	.site-footer__logo.has-lottie > img {
		display: none;
	}
}
@media (prefers-reduced-motion: reduce) {
	.site-footer__logo.has-lottie .site-footer__logo-lottie {
		display: none;
	}
	.site-footer__logo.has-lottie > img {
		display: block;
	}
}

/* ---- Two-step newsletter carousel (live-parity slide) ------------------- */
.site-footer__form .gdv-nl-viewport {
	overflow: hidden;
	position: relative;
	transition: height 0.45s ease;
}
.site-footer__form .gdv-nl-track {
	transition: transform 0.45s ease;
	will-change: transform;
}
.site-footer__form .gdv-nl-panel {
	width: 100%;
}
.site-footer__form .gdv-nl-panel--prefs {
	padding-top: 0.5rem;
}

/* step buttons — same charcoal pill as the old submit; Back = outline pill */
.site-footer__form .gdv-nl-btn {
	align-items: center;
	border: none;
	border-radius: 100px;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 1.8rem;
	font-weight: 600;
	gap: 10px;
	line-height: 1.3;
	padding: 1.1em 2.6em;
	transition: opacity 0.2s ease;
}
.site-footer__form .gdv-nl-btn:hover { opacity: 0.85; }
.site-footer__form .gdv-nl-btn--primary {
	background: var(--color-n-black, #282829);
	color: #fff;
}
.site-footer__form .gdv-nl-btn--primary::after {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 19 19' fill='%23ffffff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5.576 7.914 2.163 14.19 8.45H.5v2.25h13.691l-6.277 6.29L9.5 18.575l9-9-9-9z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 14px;
	width: 14px;
}
.site-footer__form .gdv-nl-choose { margin-top: 5rem; }
/* Back button lives inside .gform_footer, so out-specific the charcoal pill */
.site-footer__form .gform_footer button.gdv-nl-btn--secondary {
	background: transparent;
	box-shadow: inset 0 0 0 2px var(--color-n-black, #282829);
	color: var(--color-n-black, #282829);
}
.site-footer__form .gform_footer button.gdv-nl-btn--secondary::after {
	content: none; /* no trailing arrow on Back */
}
.site-footer__form .gform_footer button.gdv-nl-btn--secondary::before {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 19 19' fill='%23282829' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5 18.575l1.586-1.587L4.81 10.7H18.5V8.45H4.809l6.277-6.288L9.5.575l-9 9 9 9z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 14px;
	width: 14px;
}
.site-footer__form .gform_footer {
	gap: 1.6rem;
	flex-wrap: wrap;
}

/* inline validation for step 1 */
.site-footer__form .gdv-err {
	color: #b3261e;
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 6px;
	min-height: 0;
}
.site-footer__form .gdv-err:empty { display: none; }
.site-footer__form .gdv-invalid input {
	box-shadow: inset 0 0 0 2px #b3261e;
}

/* opt-in checkbox — live's 27px square + tick, bold title + sub-line */
.site-footer__form .gfield--type-checkbox { grid-column: 1 / -1; }
.site-footer__form .gfield--type-checkbox .gfield_label { display: none; }
.site-footer__form .gfield--type-checkbox .gfield_checkbox {
	list-style: none;
	margin: 0 0 3.2rem;
	padding: 0;
}
.site-footer__form .gfield--type-checkbox .gchoice {
	position: relative;
}
.site-footer__form .gfield--type-checkbox .gchoice input[type="checkbox"] {
	height: 27px;
	left: 0;
	margin: 0;
	opacity: 0;
	position: absolute;
	top: 3px;
	width: 27px;
	z-index: 1;
	cursor: pointer;
}
.site-footer__form .gfield--type-checkbox .gchoice label {
	cursor: pointer;
	display: block;
	font-size: 2rem;
	line-height: 1.4;
	padding-left: 43px;
	position: relative;
	max-width: none;
}
.site-footer__form .gfield--type-checkbox .gchoice label::after {
	border: 2px solid var(--color-n-black, #282829);
	border-radius: 3px;
	content: "";
	height: 27px;
	left: 0;
	position: absolute;
	top: 3px;
	transition: background-color 0.15s ease;
	width: 27px;
}
.site-footer__form .gfield--type-checkbox .gchoice label::before {
	border: solid #fff;
	border-width: 0 2px 2px 0;
	content: "";
	height: 14px;
	left: 10px;
	opacity: 0;
	position: absolute;
	top: 7px;
	transform: rotate(45deg);
	transition: opacity 0.15s ease;
	width: 8px;
	z-index: 1;
}
.site-footer__form .gfield--type-checkbox .gchoice input:checked + label::after,
.site-footer__form .gfield--type-checkbox .gchoice input:checked ~ label::after {
	background-color: var(--color-n-black, #282829);
}
.site-footer__form .gfield--type-checkbox .gchoice input:checked + label::before,
.site-footer__form .gfield--type-checkbox .gchoice input:checked ~ label::before {
	opacity: 1;
}
.site-footer__form .gdv-optin-title {
	display: block;
	font-weight: 700;
}
.site-footer__form .gdv-optin-sub {
	display: block;
	font-size: 1.7rem;
}

/* live-parity inline thank-you (rendered after AJAX signup) */
.site-footer__form .gdv-nl-thanks {
	color: var(--color-n-black, #282829);
}
.site-footer__form .gdv-nl-thanks__title {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 1.6rem;
}
.site-footer__form .gdv-nl-thanks p:not(.gdv-nl-thanks__title) {
	font-size: 1.7rem;
	line-height: 1.5;
	margin: 0;
}
