.footer-links {
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	max-width: var(--site-width, 1460px);
	margin: 0 auto;
	gap: 1rem;
}
.footer-links .nav-items {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.footer-links .footer-links--item {
	display: flex;
	align-items: center;
	text-align: left;
	padding: 0.25rem 1rem;
	font-size: var(--font-size__base);
	color: #e0e0e0;
	line-height: 1.1;
}

.footer-links .item--heading {
	color: var(--theme-white, #fff);
	font-size: var(--h5-font);
	font-weight: 400;
	font-family: var(--font__serif);
	line-height: var(--line-height__base, 1.5);
	margin-top: 0;
	margin-bottom: 0.5em;
}

.footer-links .footer-links--item:hover {
	text-decoration: underline;
	color: var(--theme-white, #fff);
}
.footer-links .nav-items a {
    font-size: 14px;
}

@media screen and (min-width: 700px) {
	.footer-links .footer-links--item {
		min-width: 0;
		flex: 1 1 auto;
	}
}

@media screen and (min-width: 1025px) {
	.content-container .footer-links {
		padding: 0;
	}
}
