/* =========================================================
   ZTM Kielce — Footer
   ========================================================= */

.ztm-footer {
	background: #0d1f3c;
	font-family: var(--ztm-font, 'Inter', sans-serif);
}

.ztm-footer-top {
	display: none;
}

.ztm-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 0;
}

.ztm-footer-copyright {
	font-size: 13.5px;
	color: #7a90b0;
	margin: 0;
}

.ztm-footer-bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ztm-footer-bottom-links a {
	font-size: 13.5px;
	color: #7a90b0;
	transition: color 0.15s ease;
}

.ztm-footer-bottom-links a:hover {
	color: #fff;
}

/* HC */
body.ztm-hc .ztm-footer { background: #000; border-top: 2px solid #fff; }
body.ztm-hc .ztm-footer-copyright { color: #aaa; }
body.ztm-hc .ztm-footer-bottom-links a { color: #ff0; }
body.ztm-hc .ztm-footer-bottom-links a:hover { color: #fff; }

@media (max-width: 640px) {
	.ztm-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding: 16px 20px;
	}
}