#products-header {
	padding-left: 60px;
	margin: 0 0 20px 0;
	height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	background-color: #9dc2de;
	background-image: var(--products-header-image);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 61vw auto;
}

#products-header h1 {
	margin: 0;
	font-family: "Poppins", sans-serif;
	color: #0b3150;
	font-weight: bold;
	font-size: 60px;
	line-height: 100%;
}

#products-header p {
	margin: 0;
	width: 30%;
	font-family: "Urbanist", sans-serif;
	color: #0b3150;
	font-weight: normal;
	font-size: 30px;
}

@media (max-width: 1000px) {
	#products-header {
		padding-left: 60px;
		height: 350px;
		background-size: 50vw auto;
	}

	#products-header h1 {
		font-size: 50px;
	}

	#products-header p {
		width: 40%;
		font-size: 25px;
	}
}

@media (max-width: 700px) {
	#products-header {
		padding-left: 30px;
		padding-right: 30px;
		padding-top: 30px;
		height: 500px;
		background-size: 100vw auto;
		justify-content: flex-start;
		background-position: right 100px;
	}

	#products-header h1 {
		font-size: 50px;
	}

	#products-header p {
		width: 60%;
		font-size: 25px;
	}
}

@media (max-width: 500px) {
	#products-header {
		padding-left: 30px;
		padding-right: 30px;
		padding-top: 30px;
		height: 500px;
		background-size: 500px auto;
		justify-content: flex-start;
		background-position: right 200px;
	}

	#products-header h1 {
		font-size: 50px;
	}

	#products-header p {
		width: auto;
		font-size: 25px;
	}
}

/* ELEMENT CATEGORIES */
.element-categories-feature {
	margin: 0 auto;
	padding: 0 25px;
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 100%;
	box-sizing: border-box;
	cursor: pointer;
}

.element-categories-feature.visible {
	display: flex;
}

.element-category {
	display: block;
	width: 100px;
	height: 100px;
	margin: 5px;
	border-radius: 10px;
	font-family: "Urbanist", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	color: #fff;
	overflow: hidden;
	text-decoration: none;
}

.element-number {
	padding: 5px 0 0 5px;
	font-size: 20px;
	line-height: 100%;
}

.element-initials {
	text-align: center;
	font-size: 50px;
	line-height: 100%;
}

.element-name {
	font-size: 14px;
	text-align: center;
}

.dark-blue {
	background-color: #0c3050;
}

.orange {
	background-color: #ea7224;
}

.teal {
	background-color: #008580;
}

.blue {
	background-color: #20558b;
}

.yellow {
	background-color: #f1aa1e;
}

.light-blue {
	background-color: #5681ae;
}

.light-teal {
	background-color: #01b2ac;
}

.product-family-block__symbol,
.product-family-block__images {
	display: none !important;
}

/* Pagination - matching wp:query-pagination block style */
.navigation.pagination {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 2rem;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.navigation.pagination .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}

.navigation.pagination .nav-links a.page-numbers {
	background-color: #0064cf;
	color: #fff;
	padding: 1rem;
	text-align: center;
	border-radius: 50%;
	width: 55px;
	height: 55px;
	font-weight: bold;
	margin: 2px 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	min-width: fit-content;
	box-sizing: border-box;
}

.navigation.pagination .nav-links a.page-numbers:hover {
	background-color: #004fa3;
}

.navigation.pagination .nav-links .page-numbers.dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	min-width: fit-content;
}

.product-family-block .col-sds {
	display: none;
}


@media (max-width: 768px) {
	.product-family-block {
		margin-bottom: 40px;
	}

	.product-family-block + .product-family-block {
		margin-top: 40px;
	}

	/* Hide Product number and SDS columns on mobile */
	.product-family-block .col-product-number,
	.product-family-block .col-sds {
		display: none;
	}

	/* Adjust Actions column width on mobile */
	.product-family-block .col-actions {
		flex: 0 0 140px;
	}
}