.footer {
	background-color: var(--color-primary-dark-over);
	font-size: var(--font-size-text-xs);

	padding: var(--padding-block);
}

.footer a {
	color: inherit;
}

.footer__copy {
	text-align: center;
	border-bottom: .1rem solid rgb(255 255 255 / .25);

	margin-bottom: 1.6em;
	padding-bottom: 1.6em;
}

.footer__addr>ul {
	list-style-type: none;
	text-align: center;
}

.footer__addr>ul>li {
	display: inline;

	&:not(:last-child)::after {
		content: ' /';
		color: rgb(255 255 255 / .35);
	}
}

.footer__link {
	text-decoration: none;
	padding: calc(var(--padding-content) / 2);

	&:hover {
		text-decoration: underline;
	}
}

.footer__link .icon {
	font-size: var(--font-size-subtitle-xs);
	fill: var(--color-secondary);
}