/* Shared footer normalization for every page-specific theme bundle. */
.footer-main {
	padding: 48px 0;
}

.footer-messaging {
	margin-top: 16px;
}

.footer-messaging-label {
	display: block;
	margin-bottom: 8px;
	color: var(--color-text-muted);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.footer-messaging-icons {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-social {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin-top: 12px;
}

.footer-social-label {
	display: block;
	margin-bottom: 2px;
	color: #c2c2c2;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.footer-social-icons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.site-footer .social-link svg {
	width: 22px;
	height: 22px;
}

/* Footer trust strip: keep the four service promises distinct from footer links. */
.site-footer .footer-benefits {
	padding: 24px 0;
	background: #123d24;
}

.site-footer .footer-benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}

.site-footer .footer-benefit-item {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 58px;
	padding: 4px 24px;
	border-right: 1px solid rgba(216, 239, 114, .28);
	color: #fff;
}

.site-footer .footer-benefit-item:last-child {
	border-right: 0;
}

.site-footer .footer-benefit-item svg {
	flex: 0 0 28px;
	color: #d8ef72;
	stroke: currentColor;
}

.site-footer .footer-benefit-item span {
	display: block;
	color: #fff;
	font-size: .88rem;
	font-weight: 750;
	line-height: 1.35;
}

@media (max-width: 800px) {
	.site-footer .footer-benefits-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 14px;
	}

	.site-footer .footer-benefit-item:nth-child(2) {
		border-right: 0;
	}
}

@media (max-width: 480px) {
	.site-footer .footer-benefits {
		padding: 20px 0;
	}

	.site-footer .footer-benefit-item {
		gap: 9px;
		padding: 4px 10px;
	}

	.site-footer .footer-benefit-item svg {
		flex-basis: 23px;
		width: 23px;
		height: 23px;
	}

	.site-footer .footer-benefit-item span {
		font-size: .75rem;
	}
}

@media (max-width: 600px) {
	.footer-social {
		align-items: center;
		text-align: center;
	}
}
