/*
Theme Name: Liminal Child
Theme URI: https://yourwebsite.com
Description: Child theme for the Liminal WordPress theme.
Author: Your Name
Template: liminal
Version: 1.0.0
Text Domain: liminal-child
*/

/* Custom footer styling */
.custom-footer-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding: 20px 0;
}

.custom-footer-info a {
	text-decoration: none;
}

.footer-copy {
	font-size: 14px;
}

.footer-links {
	display: flex;
	gap: 18px;
	align-items: center;
	font-size: 14px;
}

.footer-socials {
	display: flex;
	gap: 14px;
	align-items: center;
}

.footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.footer-socials svg {
	display: block;
}

/* Mobile footer layout */
@media (max-width: 768px) {
	.custom-footer-info {
		flex-direction: column;
		text-align: center;
	}

	.footer-links,
	.footer-socials {
		justify-content: center;
	}
}