/* ========================================
	Products Page Styles
	- Keeps product-specific helpers off the global stylesheet
	- Inline styles moved from products.html for maintainability
======================================== */

/* Clamp product descriptions to three lines */
.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Active industry filter pill state */
.industry-filter.active-industry {
	background-color: #00A8CE;
	border-color: #00A8CE;
}

.industry-filter.active-industry span {
	color: white;
}

.industry-filter.active-industry .font-medium {
	color: white;
}

.industry-filter.active-industry .bg-gray-100 {
	background-color: white;
	color: #00A8CE;
}
