.footer-contact {
	border-top: 2px solid #7ea8e8;
	padding: 0.8rem 1rem 0;
	background: #ffffff;
	line-height: 100%;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	max-width: 100%;
	margin: 0 auto;
}

.footer-col {
	padding: 0 1em 0;
	border-right: 1px solid #c7d9f8;
}

.footer-col:last-child {
	border-right: none;
}

.footer-title {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #7ea8e8;
	margin: 0 0 8px;
	font-weight: 500;
}

.footer-col a {
	font-size: 14px;
	color: #3b5ea6;
	text-decoration: none;
	display: block;
	margin-top: 4px;
}

.footer-col a:hover {
	text-decoration: underline;
	color: #7ea8e8;
}

.footer-col img {
	width: 66%;
	height: auto;
	max-width: 100%;
}

/* ---- TABLETTE (max 1024px) ---- */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.footer-col {
		border-right: none;
		border-bottom: 1px solid #c7d9f8;
		padding: 0.8rem 0.5rem;
	}

	.footer-col:last-child {
		border-bottom: none;
	}

	.footer-col img {
		width: 50%;
	}
}

/* ---- MOBILE (max 600px) ---- */
@media (max-width: 600px) {
	.footer-contact {
		padding: 1rem 1rem 0.5rem;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.8rem;
	}

	.footer-col {
		padding: 0.6rem 0.5rem;
		border-bottom: 1px solid #c7d9f8;
		border-right: none;
	}

	.footer-col:nth-child(odd) {
		border-right: 1px solid #c7d9f8;
	}

	.footer-col:last-child,
	.footer-col:nth-last-child(2):nth-child(odd) {
		border-bottom: none;
	}

	.footer-col img {
		width: 70%;
	}

	.footer-col a {
		font-size: 13px;
	}

	.footer-title {
		font-size: 12px;
	}
}

/* ---- TRÈS PETIT MOBILE (max 380px) ---- */
@media (max-width: 380px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-col {
		border-right: none;
		border-bottom: 1px solid #c7d9f8;
	}

	.footer-col:nth-child(odd) {
		border-right: none;
	}

	.footer-col img {
		width: 50%;
	}
}