h1 {
	margin-bottom: 10px;
}
.gearchecklist-container {
	max-width: 1000px;
	padding: 10px;
	line-height: 1.3;
}
.gearchecklist-container h1 {
	text-align: left;
	color: #333;
	margin-bottom: 10px;
}
.gearchecklist-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}
.first-column {
	grid-column: span 1;
	align-self: start; /* Stick to the top */
}
.other-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Wrap into flexible columns */
	gap: 20px;
}
.gearchecklist-group {
	margin-bottom: 0;
}
.gearchecklist-group h2 {
	font-weight: bold;
	font-size: 1.2em;
	margin: 5px 0 10px 0;
	border-bottom: 2px solid var(--text-hdr-color);
	padding-bottom: 5px;
}
.gearchecklist-wrapper ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.gearchecklist-wrapper ul li {
	white-space: nowrap;
	position: relative;
	padding-left: 24px;
	color: #555;
}
span.sub-list {
	font-weight: bold;
	color: #202020;
}
ul.sub-list {
	margin-left: 24px;
	margin-bottom: 4px;
}
.gearchecklist-wrapper ul li::before {
	font-family: "FontAwesome", serif;
	content: '\f096';
	position: absolute;
	left: 0;
	top: 0;
	line-height: 1.1em;
	transform: translateY(2px);
	color: var(--text-hdr-color);
}
#footerPrint {
	display:none;
}

@media (max-width : 800px) {
	#printDiv {
		display:none;
	}
}

@media print {
	html, body {
		height: auto;
	}
	#wrap {
		max-height: 90%;
		min-height: 50vh;
		margin-top: 0;
		padding-bottom: 0;
	}
	body {
		margin: 0;
		padding: 0;
	}
	#textIntro,
	div.push,
	#sfooter {
		display: none !important;
	}
	.gearchecklist-container {
		max-width: 90%;
		padding: 0;
	}
	.gearchecklist-group h2 {
		margin-top:0;
	}
	h1 {
		display: none;
	}
	h1, h2 {
		color: black;
	}
	.first-column {
		min-width:325px;
	}
	ul li::before {
		color: black;
	}
	.gearchecklist-wrapper {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
	.gearchecklist-group {
		margin-bottom: 11px;
	}
	#footerPrint {
		display:block;
		position: fixed;
		bottom: 0;
		right: 0;
		padding: 10px;
		font-size: 10px;
		color: #555;
	}
	@page {
		size: A4;
	}
}