/*
 * Homepage product-family navigation sync.
 * Scoped to the front-page products section.
 */
body.home #products .product-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 20px;
	margin-bottom: 48px;
}

body.home #products .product-tab {
	justify-content: center;
	min-width: 0;
	padding: 14px 8px;
	font-size: clamp(16px, 1.35vw, 21px);
	letter-spacing: 1.8px;
	line-height: 1.35;
	text-align: center;
	color: #1A1D23;
}

body.home #products .product-tab:focus-visible {
	color: #0056B3;
	outline: 2px solid #0056B3;
	outline-offset: 5px;
}

@media (max-width: 1024px) {
	body.home #products .product-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body.home #products .product-tabs {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	body.home #products .product-tab {
		padding: 14px 12px;
	}
}
