/**
 * Site footer — dark bar, three columns, social row, copyright + payments.
 */

.mv-site-footer {
	background: #333333;
	color: #ffffff;
	font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.mv-site-footer a {
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.mv-site-footer a:hover,
.mv-site-footer a:focus {
	opacity: 0.85;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mv-site-footer__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 48px 24px 32px;
}

.mv-footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.75fr) minmax(0, 0.75fr);
	gap: 40px 48px;
	align-items: start;
}

.mv-footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.mv-footer-logo__image-link {
    display: inline-block;
    line-height: 0;
}

.mv-footer-logo__img {
	max-height: 48px;
	width: auto;
	height: auto;
	display: block;
}

.mv-footer-tagline {
	margin: 0 0 22px;
	max-width: 34em;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	line-height: 1.65;
}

.mv-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mv-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 14px;
}

.mv-footer-contact__icon {
	flex-shrink: 0;
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.85);
	display: inline-flex;
}

.mv-site-footer .mv-footer-heading,
.mv-site-footer h2.mv-footer-heading {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff !important;
}

.mv-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mv-site-footer .mv-footer-links a {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.95) !important;
}

.mv-footer-rule {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	margin: 36px 0;
}

.mv-footer-social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px 56px;
	padding: 8px 0 4px;
}

.mv-footer-social__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.04em;
	color: #ffffff;
	text-decoration: none;
}

.mv-footer-social__link:hover,
.mv-footer-social__link:focus {
	opacity: 0.9;
	text-decoration: none;
}

.mv-footer-social__icon {
	display: inline-flex;
	color: #ffffff;
}

.mv-footer-social__label {
	color: #ffffff;
}

.mv-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 24px;
	padding-top: 8px;
}

.mv-footer-copy {
	margin: 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.75);
	max-width: 100%;
}

.mv-footer-payments {
	flex-shrink: 0;
}

.mv-footer-payments__img {
	display: block;
	height: auto;
	max-height: 36px;
	width: auto;
	max-width: min(100%, 360px);
	object-fit: contain;
}

@media (max-width: 900px) {
	.mv-footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.mv-footer-col--brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.mv-site-footer__inner {
		padding: 36px 18px 28px;
	}

	.mv-footer-top {
		grid-template-columns: 1fr;
	}

	.mv-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.mv-footer-payments__img {
		max-width: 100%;
	}
}
