/* Footer */
.site-footer {
	background: #181A1B;
	border-top: 1px solid #232627;
	color: #d1d5db; /* gris clair */
}

/* Titres */
.site-footer .footer-title {
	color: #fff;
	font-weight: 600;
	margin-bottom: .75rem;
}

/* Brand */
.site-footer .brand-title {
	font-size: 1.25rem;
	line-height: 1;
}
.site-footer .footer-desc {
	color: #a8b0b9;
	font-size: .95rem;
}

/* Liens */
.site-footer .footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-footer .footer-links li { 
	margin: 5px 0; /* au lieu de .25rem */
}
.site-footer a {
	color: #c7ced6;
	text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus {
	color: var(--brand-primary);
}

/* Social */
.site-footer .footer-social a {
	color: #c7ced6;
	font-size: 1.1rem;
}
.site-footer .footer-social a:hover { color: var(--brand-primary); }

/* Séparateur */
.site-footer .footer-sep {
	border: 0;
	border-top: 1px solid #232627;
}

/* Bas de page inline links */
.site-footer .footer-inline {
	list-style: none;
	display: flex;
	gap: 10px; /* au lieu de 1rem */
	padding: 0;
}
.site-footer .footer-inline a { color: #c7ced6; }
.site-footer .footer-inline a:hover { color: var(--brand-primary); }

/* Responsive */
@media (max-width: 991.98px) {
	.site-footer .brand-title { font-size: 1.125rem; }
	.site-footer .footer-inline {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
	}
	.site-footer .container { text-align: center; }
	.site-footer .footer-social { justify-content: center; }
	.site-footer .brand-logo {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}
