/**
 * LSQ Element: Landing Footer
 * Figma node: 93:2 — CRM for Culinary Schools landing footer.
 *
 * Dark slim footer for landing pages. Logo on the left, italic disclaimer
 * in the middle, "Page last updated" on the right.
 */

.lsq-landing-footer {
	box-sizing: border-box;
	width: 100%;
	color: #cbd5e1;
}

.lsq-landing-footer *,
.lsq-landing-footer *::before,
.lsq-landing-footer *::after {
	box-sizing: border-box;
}

.lsq-landing-footer__inner {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

/* ---- Logo ---- */

.lsq-landing-footer__logo {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	line-height: 0;
	color: #ffffff; /* lets inline SVGs that use currentColor pick this up */
}

.lsq-landing-footer__logo svg {
	display: block;
	width: 181px;
	height: 33px;
}

.lsq-landing-footer__logo img {
	display: block;
	max-width: 181px;
	height: auto;
	width: auto;
}

/* ---- Disclaimer ---- */

.lsq-landing-footer__disclaimer {
	flex: 1 1 auto;
	max-width: 520px;
	margin: 0;
	padding: 0;
	color: #9aa6c2;
	font-size: 13px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.6;
	text-align: center;
}

/* ---- Updated text ---- */

.lsq-landing-footer__updated {
	flex: 0 0 auto;
	color: #8293aa;
	font-size: 12px;
	font-style: italic;
	font-weight: 500;
	line-height: 1.4;
	text-align: right;
	white-space: nowrap;
}

/* ---- Responsive: stack vertically on tablet / mobile ---- */

@media (max-width: 900px) {
	.lsq-landing-footer {
		padding: 28px 32px;
	}

	.lsq-landing-footer__inner {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 16px;
	}

	.lsq-landing-footer__disclaimer {
		max-width: 100%;
		text-align: center;
	}

	.lsq-landing-footer__updated {
		text-align: center;
		white-space: normal;
	}
}

@media (max-width: 480px) {
	.lsq-landing-footer {
		padding: 24px 20px;
	}

	.lsq-landing-footer__disclaimer {
		font-size: 12px;
	}
}
