/**
 * AdGrantspilot — Bottom footer bar (copyright + optional menu).
 * Matches Contact_Page.html .footer-bottom / .footer-copy / .footer-legal.
 */

.agp-footer-bottom {
	--agp-fb-bg: #0d1b2a;
	--agp-fb-text: rgba(255, 255, 255, 0.3);
	--agp-fb-border: rgba(255, 255, 255, 0.08);
	color: var(--agp-fb-text);
	background: var(--agp-fb-bg);
	font-family: Sora, system-ui, sans-serif;
	border-top: 1px solid var(--agp-fb-border);
	-webkit-font-smoothing: antialiased;
}

.agp-footer-bottom__inner {
	box-sizing: border-box;
	max-width: 1100px;
	margin: 0 auto;
	padding: 24px 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
}

.agp-footer-bottom__copyright {
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
	color: var(--agp-fb-text);
}

.agp-footer-bottom__copyright a {
	color: inherit;
	text-decoration: underline;
}

.agp-footer-bottom__copyright a:hover {
	color: rgba(255, 255, 255, 0.6);
}

.agp-footer-bottom__nav {
	margin: 0;
}

.agp-footer-bottom__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
	justify-content: flex-end;
}

.agp-footer-bottom__menu a {
	color: var(--agp-fb-text);
	font-size: 12px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.agp-footer-bottom__menu a:hover,
.agp-footer-bottom__menu a:focus {
	color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
	.agp-footer-bottom__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 20px;
	}

	.agp-footer-bottom__menu {
		justify-content: flex-start;
	}
}
