/* ===== Footer ===== */

.lg-footer {
	margin-top: 48px;
}

/* -- Newsletter band -- */

.lg-footer__newsletter {
	background: var(--lg-navy);
	color: #fff;
	padding: 32px 0;
}

.lg-footer__newsletter-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.lg-footer__newsletter-text h3 {
	color: #fff;
	margin: 0 0 6px;
}

.lg-footer__newsletter-text p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, .75);
}

.lg-footer__newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 320px;
}

.lg-footer__newsletter-field {
	display: flex;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
}

.lg-footer__newsletter-input {
	flex: 1;
	min-width: 0;
	border: none;
	padding: 12px 14px;
	font-size: 14px;
	font-family: inherit;
	color: var(--lg-navy);
	outline: none;
}

.lg-footer__newsletter-submit {
	background: var(--lg-orange);
	color: #fff;
	border: none;
	padding: 0 22px;
	font-size: 14px;
	font-weight: 700;
	transition: background .15s;
}

.lg-footer__newsletter-submit:hover {
	background: var(--lg-orange-2);
}

.lg-footer__newsletter-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	color: rgba(255, 255, 255, .7);
}

.lg-footer__newsletter-consent input {
	margin-top: 2px;
	flex-shrink: 0;
}

.lg-footer__newsletter-consent a {
	color: #fff;
	text-decoration: underline;
}

.lg-footer__newsletter-success {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
}

/* -- Main columns -- */

.lg-footer__main {
	background: #fff;
	padding: 48px 0 32px;
}

.lg-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
}

.lg-footer__logo img {
	max-height: 40px;
	width: auto;
}

.lg-footer__about {
	margin: 16px 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--lg-gray);
}

.lg-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lg-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: var(--lg-navy);
}

.lg-footer__contact .lg-icon {
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 15px;
	color: var(--lg-orange);
}

.lg-footer__contact a {
	transition: color .15s;
}

.lg-footer__contact a:hover {
	color: var(--lg-orange);
}

.lg-footer__col h4 {
	margin: 0 0 16px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: var(--lg-navy);
}

.lg-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lg-footer__col a {
	font-size: 13px;
	color: var(--lg-gray);
	transition: color .15s;
}

.lg-footer__col a:hover {
	color: var(--lg-orange);
}

/* -- Bottom bar -- */

.lg-footer__bottom {
	background: var(--lg-navy);
	padding: 16px 0;
}

.lg-footer__bottom-inner {
	text-align: center;
}

.lg-footer__bottom p {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, .65);
}

/* ===== Responsive ===== */

@media (max-width: 960px) {
	.lg-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px 24px;
	}

	.lg-footer__col--brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.lg-footer__newsletter-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.lg-footer__newsletter-form {
		min-width: 0;
	}

	.lg-footer__grid {
		grid-template-columns: 1fr;
	}

	.lg-footer__col--brand {
		grid-column: auto;
	}
}
