/* Arcade Footer block */
.arcade-footer {
	--arcade-footer-muted: rgba(11, 11, 15, 0.65);
	padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 6vw, 4rem);
	background-color: #f5f5f5;
	color: #0b0b0f;
}

.arcade-footer__inner {
	width: 100%;
}

.arcade-footer__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
	justify-content: space-between;
	padding-bottom: 1.5rem;
}

.arcade-footer__copy {
	flex: 1 1 320px;
	min-width: 280px;
}

.arcade-footer__heading {
	margin: 0 0 0.25rem;
	font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.arcade-footer__subheading {
	margin: 0;
	color: var(--arcade-footer-muted);
	font-size: 1rem;
}

.arcade-footer__form {
	flex: 1 1 320px;
	min-width: 280px;
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid rgba(11, 11, 15, 0.1);
	padding: 0.25rem;
	gap: 0.25rem;
	max-width: 460px;
	margin-left: auto;
}

.arcade-footer__input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 0.6rem 1rem;
	font-size: 1rem;
	border-radius: 999px;
}

.arcade-footer__input:focus {
	outline: none;
}

.arcade-footer__button {
	border: none;
	background: #0b0b0f;
	color: #fff;
	padding: 0.6rem 1.5rem;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background 0.2s ease;
}

.arcade-footer__button:hover,
.arcade-footer__button:focus {
	background: #ff2745;
}

.arcade-footer__divider {
	border: none;
	height: 1px;
	background: rgba(11, 11, 15, 0.1);
	margin: 0 0 1.5rem;
}

.arcade-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
}

.arcade-footer__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.arcade-footer__copyright {
	margin: 0;
	font-size: 0.95rem;
	color: var(--arcade-footer-muted);
}

.arcade-footer__policies {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}


.arcade-footer__policy-link,
.arcade-footer__policy-link:visited {
	color: inherit;
	text-decoration: none;
	font-size: 0.95rem;
}

.arcade-footer__policy-link:hover,
.arcade-footer__policy-link:focus {
	text-decoration: underline;
}

.arcade-footer__social {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.arcade-footer__social-link,
.arcade-footer__social-link:visited {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(11, 11, 15, 0.07);
	color: rgba(11, 11, 15, 0.75);
	transition: color 0.2s ease, background 0.2s ease;
}

.arcade-footer__social-link:hover,
.arcade-footer__social-link:focus {
	background: #0b0b0f;
	color: #fff;
}

.arcade-footer__social-link span svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

@media (max-width: 768px) {
	.arcade-footer__top {
		flex-direction: column;
		align-items: flex-start;
	}

	.arcade-footer__form {
		width: 100%;
		margin-left: 0;
	}

	.arcade-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.arcade-footer__social {
		width: 100%;
		justify-content: flex-start;
	}
}
