/**
 * Match the footer's link columns to the Astro build's footer treatment: no
 * bullet points, no underlined links ever, uniform (non-bold, same-size)
 * column headings and links, and a row of social icons.
 */
footer.wp-block-group .wp-block-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

footer.wp-block-group a {
	text-decoration: none;
}

footer.wp-block-group .df-footer-col-heading {
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

footer.wp-block-group .df-footer-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.95rem;
}

.df-footer-social {
	display: flex;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.df-footer-social a {
	color: inherit;
	display: inline-flex;
}

.df-footer-social svg {
	width: 22px;
	height: 22px;
}

.df-footer-social a:hover {
	opacity: 0.75;
}
