.hero-chem {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}
.hero-chem__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero-chem::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
	z-index: 1;
}
.hero-chem__content {
	position: relative;
	z-index: 2;
	padding: 120px 0 80px;
}
.hero-chem__row {
	display: flex;
	gap: 48px;
	align-items: center;
	justify-content: space-between;
}
.hero-chem__title {
	flex: 1 1 50%;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 600;
	line-height: 1.1;
	margin: 0;
}
.hero-chem__stack {
	flex: 1 1 50%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.hero-chem__text {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	margin: 0;
	text-align: end;
}
.hero-chem__cta {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 999px;
	background-color: #fff;
	color: #000;
	font-weight: 500;
	align-self: flex-end;
}
/* Card style only for the first product block */
.product-cards .card {
	background-color: #F8F9FB;
	border: none;
	border-radius: 0;
	padding: 0;
}
.product-cards .card-img-top {border-radius: 0;}

/* Reusable bordered table style */
.table-bordered-columns,
.table-bordered-columns th,
.table-bordered-columns td {
	border: 1px solid #888 !important;
	border-collapse: collapse !important;
}
.table-bordered-columns th,
.table-bordered-columns td {
	text-align: left !important;
	vertical-align: top;
}

@media (max-width: 768px) {
	.hero-chem::before {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
	}
	.hero-chem__content {
		padding: 96px 0 64px;
	}
	.hero-chem__row {
		flex-direction: column;
		align-items: flex-start;
	}
	.hero-chem__stack,
	.hero-chem__text {
		text-align: left;
	}
	.hero-chem__cta {
		align-self: flex-start;
	}
}
