.site-footer {
	background: var(--color-navy);
	color: rgba(255, 255, 255, 0.85);
	padding-block: var(--space-7);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer h2 {
	color: #fff;
	font-size: var(--text-base);
	margin-bottom: var(--space-4);
}

.site-footer__grid {
	display: grid;
	gap: var(--space-7);
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.site-footer__grid {
		grid-template-columns: 1.5fr 1fr 1fr 1fr;
	}
}

.site-footer__brand .site-logo--footer {
	display: inline-block;
	margin-bottom: var(--space-4);
	font-weight: 800;
	font-size: var(--text-lg);
	color: #fff;
	text-decoration: none;
}

.site-footer__brand .site-logo--footer img {
	height: 64px;
	width: auto;
}

.site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.site-footer__list a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.site-footer__list a:hover {
	color: #fff;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	margin-top: var(--space-6);
	padding-top: var(--space-5);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__social {
	display: flex;
	gap: var(--space-3);
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.site-footer__social a:hover {
	background: rgba(255, 255, 255, 0.2);
}

.site-footer__social svg {
	width: 18px;
	height: 18px;
}
