footer {
	width: 100%;
	margin-top: 12em;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
	width: calc(100% - 4em);
	max-width: 75em;
	margin: 0 auto;
	padding: 2.75em 0 12em 0;
	font-size: 1em;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: top center;
	gap: 2em;

	& > div {
		display: flex;
		flex-direction: column;
		gap: 1em;
	}

	p {
		color: rgba(255, 255, 255, 0.95);
		font-weight: 500;
		margin: 0;
		height: 2.25em;
	}
}

.footer-item {
	color: #dde4fd80;
	transition: 0.2s;
	&:hover {
		color: #fff;
	}
}

.footer-disabled {
	color: #dde4fd30;
}

.footer-copyright {
	img {
		width: 2.25em;
	}

	a {
		font-size: 1.25em;
		font-weight: 600;
	}

	p {
		font-size: 1em;
		font-weight: 400;
		color: #dde4fd4d;
		margin-top: -0.4em;
	}
}

/* Center and wrap footer elements on mobile */
@media (max-width: 48em) {
	.footer {
		flex-wrap: wrap;
		justify-content: center;
		gap: 4em;
	}

	.footer-copyright {
		width: 100%;
	}

	.footer-column {
		flex: 1;
	}
}
