/*
 * KCDems site footer — loaded site-wide (see functions.php).
 * Scoped to .kcdems-footer so it never collides with Kadence's own footer styles.
 * Brand tokens (--blue-*, --radius, --font-sans) come from style.css.
 */
.kcdems-footer {
	background: var(--blue-primary);
	color: #fff;
	padding: 48px 0 0;
	font-family: var(--font-sans);
}
.kcdems-footer .footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 36px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}
.kcdems-footer .footer-heading {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}
.kcdems-footer .footer-brand p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 8px 0 0;
}
.kcdems-footer .footer-col h4 {
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 12px;
	color: #fff;
}
.kcdems-footer .footer-col a {
	display: block;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 0.9rem;
	padding: 3px 0;
	transition: color 0.2s, padding-left 0.2s;
}
.kcdems-footer .footer-col a:hover,
.kcdems-footer .footer-col a:focus {
	color: #fff;
	padding-left: 4px;
}
.kcdems-footer .footer-cta {
	margin-top: 16px;
}
.kcdems-footer .footer-btn {
	display: inline-block;
	background: #fff;
	color: var(--blue-primary);
	font-weight: 700;
	padding: 0.7rem 1.4rem;
	border-radius: var(--radius);
	text-decoration: none;
	transition: background 0.2s;
}
.kcdems-footer .footer-btn:hover,
.kcdems-footer .footer-btn:focus {
	background: #f0f0f0;
}
.kcdems-footer .footer-bottom-wrap {
	background: var(--blue-dark);
	margin-top: 40px;
	padding: 16px 24px;
}
.kcdems-footer .footer-bottom-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	align-items: center;
	justify-content: space-between;
}
.kcdems-footer .footer-bottom-inner p {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}
.kcdems-footer .footer-legal a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.8rem;
	margin-left: 14px;
}
.kcdems-footer .footer-legal a:hover {
	color: #fff;
}
@media (max-width: 768px) {
	.kcdems-footer .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
	.kcdems-footer .footer-bottom-inner { justify-content: center; text-align: center; }
	.kcdems-footer .footer-legal a { margin: 0 7px; }
}
@media (max-width: 480px) {
	.kcdems-footer .footer-inner { grid-template-columns: 1fr; }
}
