/* ============================================================
 * VideoIA — Footer (refonte v2.0)
 * Source : spec section 01 (.vi-foot)
 * ============================================================ */

.vi-foot {
	background: var(--vi-paper-2);
	border-top: 1px solid var(--vi-line);
	padding: 56px var(--vi-pad-x) 28px;
	margin-top: 0;
}
.vi-foot__inner {
	max-width: var(--vi-container);
	margin: 0 auto;
}

.vi-foot__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}

.vi-foot__brand {
	font: 700 19px/1 var(--vi-serif);
	letter-spacing: -0.01em;
	margin-bottom: 14px;
	color: var(--vi-ink);
}
.vi-foot__brand em {
	font-style: italic;
	color: var(--vi-mute);
	font-weight: 400;
}
.vi-foot__about p {
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--vi-ink-2);
	margin: 0;
	max-width: 40ch;
}

.vi-foot h5 {
	font: 600 11px/1 var(--vi-mono);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--vi-mute);
	margin: 0 0 16px;
}

.vi-foot ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 13.5px;
	line-height: 1.9;
	color: var(--vi-ink-2);
}
.vi-foot ul a {
	color: inherit;
	transition: color 0.15s ease;
}
.vi-foot ul a:hover {
	color: var(--vi-ink);
}

.vi-foot__lock {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 28px;
	margin-top: 40px;
	border-top: 1px solid var(--vi-line);
	font: 500 11px/1 var(--vi-mono);
	color: var(--vi-mute);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.vi-foot__lock span { display: inline-block; }

/* === Responsive === */
@media (max-width: 899px) {
	.vi-foot {
		padding: 40px var(--vi-pad-x) 24px;
	}
	.vi-foot__grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.vi-foot__about {
		grid-column: 1 / -1;
	}
	.vi-foot__lock {
		flex-direction: column;
		gap: 8px;
		text-align: center;
		margin-top: 32px;
	}
}
@media (max-width: 480px) {
	.vi-foot__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* === Logo image dans le footer (the_custom_logo) === */
.vi-foot__brand .custom-logo,
.vi-foot__brand img,
.vi-foot__brand .custom-logo {
	height: 36px;
	width: auto;
	max-width: 160px;
	display: block;
}
.vi-foot__brand .custom-logo-link {
	display: inline-block;
}

/* Logo footer : fond blanc fondu dans paper-2 */
.vi-foot__brand img,
.vi-foot__brand .custom-logo {
	mix-blend-mode: multiply;
}

/* Logo footer : force la transparence du fond blanc baked-in */
.vi-foot__brand .custom-logo-link,
.vi-foot__brand a {
	background: transparent !important;
	display: inline-block;
	line-height: 1;
}
.vi-foot__brand .custom-logo,
.vi-foot__brand img {
	mix-blend-mode: multiply !important;
	background: transparent !important;
	max-width: 140px !important;
	height: auto !important;
}
