body > footer
{
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem;
	background-color: var(--risalto-grey-dark);
	color: #fff;
	text-align: center;
	line-height: 2;
	gap: 2rem;
}

body > footer a
{
	text-decoration: none;
	color: #fff;
	font-weight: 500;
}

body > footer h2
{
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1.3rem;
	text-transform: uppercase;
	font-weight: 600;
}

body > footer ul
{
	margin: 0;
}

.footer-main-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

body > footer hr
{
	width: 1024px;
	max-width: 100%;
	border-top: 1px;
	border-top-style: solid;
	border-bottom-style: none;
	border-left-style: none;
	border-right-style: none;
}

.footer-policy-content
{
	font-size: 0.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

@media (min-width: 400px)
{
	.footer-policy-content ul
	{
		display: flex;
		flex-direction: row;
		gap: 1rem;
	}
}

@media (min-width: 800px)
{
	.footer-main-content
	{
		flex-direction: row;
		width: 100%;
		max-width: 1200px;
		justify-content: space-around;
		text-align: left;
	}
}

@media (min-width: 1200px)
{
	body > footer a:hover
	{
		color: var(--risalto-red-light);
	}
}

