#bdwpf-custom-footer {
	width: 100%;
	padding: 16px 24px;
	box-sizing: border-box;
}

#bdwpf-custom-footer .bdwpf-footer-inner {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

#bdwpf-custom-footer .bdwpf-footer-text {
	opacity: 0.95;
}

#bdwpf-custom-footer .bdwpf-footer-links a {
	color: inherit;
	text-decoration: none;
	margin: 0 8px;
	opacity: 0.9;
}

#bdwpf-custom-footer .bdwpf-footer-links a:hover,
#bdwpf-custom-footer .bdwpf-footer-links a:focus {
	text-decoration: underline;
	opacity: 1;
}

#bdwpf-custom-footer .bdwpf-sep {
	margin: 0 8px;
	opacity: 0.5;
}

/* Ensure links wrap nicely and align with flex */
#bdwpf-custom-footer .bdwpf-footer-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
	#bdwpf-custom-footer {
		padding: 12px 16px;
	}
	#bdwpf-custom-footer .bdwpf-footer-inner {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	#bdwpf-custom-footer .bdwpf-footer-text {
		text-align: center;
	}
	#bdwpf-custom-footer .bdwpf-footer-links {
		justify-content: center;
		row-gap: 6px;
	}
	#bdwpf-custom-footer .bdwpf-footer-links a {
		margin: 4px 8px;
	}
}


