/**
 * products.css — "Our Products Are Made in the USA" (tpl-products.php).
 * Rails: intro 800 · content 1120 · band 1300 (25px left inset) · Q&A 1080.
 * Type: band H2 Poppins 32 charcoal · H3/questions Poppins 27.2 navy ·
 * body Merriweather 16 charcoal. Questions carry 15px vertical padding
 * (live .our-office-heading), which sets the Q&A run's rhythm.
 */

/* shared 1120 content rail (matches live's centered inner-wrap) */
.odx-products__wrap {
	box-sizing: content-box;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.odx-products__text {
	text-align: left;
	font-family: var(--font-serif);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-charcoal);
}

/* ── intro paragraph band (section-167-26) ── */
.odx-products__intro {
	background-color: var(--color-off-white);
	text-align: center;
}
.odx-products__intro-inner {
	box-sizing: content-box;
	max-width: 800px;
	margin: 0 auto;
	padding: 75px var(--container-pad);
}

/* ── img/lede 2-col + prose blocks (section-15-26) ── */
.odx-products__cols {
	padding: 0 0 75px;
}
.odx-products__cols-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.odx-products__col-img img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 5px;
}
.odx-products__col-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 30px;
}
.odx-products__h3 {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 27.2px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--color-navy);
}
/* live paints a 77px drop between the lede heading and its paragraph */
.odx-products__col-text .odx-products__h3 {
	margin-bottom: 77px;
}
.odx-products__prose-row {
	padding-top: 30px;
}
.odx-products__prose {
	max-width: 896px;
	margin: 0 auto;
	padding-top: 25px;
}
.odx-products__textdiv {
	margin-bottom: 25px;
}
.odx-products__textdiv:last-child {
	margin-bottom: 0;
}
.odx-products__textdiv .odx-products__h3 {
	margin-bottom: 25px;
}

/* ── heading band (section-154-26) ── */
.odx-products__band {
	background-color: var(--color-off-white);
	text-align: center;
}
.odx-products__band-inner {
	box-sizing: content-box;
	max-width: 1250px;
	margin: 0 auto;
	padding: 75px 25px;
}
.odx-products__band-title {
	width: fit-content;
	margin: 0;
	font-family: var(--font-sans);
	font-size: 32px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--color-charcoal);
	text-align: center;
}
.odx-products__accent {
	color: var(--color-blue-light);
}

/* ── lab Q&A (section-171-26) ── */
.odx-products__qa {
	padding: 75px 0;
}
.odx-products__qa-rail {
	max-width: 1080px;
	margin: 0 auto;
}
.odx-products__qa-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: center;
}
.odx-products__qa-photo img {
	display: block;
	width: 400px;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	border-radius: 5px;
}
.odx-products__qa-lede {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	padding: 30px;
}
.odx-products__qa-q {
	margin: 0;
	padding: 15px 0;
	font-family: var(--font-sans);
	font-size: 27.2px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--color-navy);
}
.odx-products__qa-block {
	max-width: 1020px;
	margin: 0 auto;
	padding: 30px 15px;
}
.odx-products__qa-block .odx-products__text {
	margin: 20px 0 35px;
}
.odx-products__qa-block .odx-products__qa-q:first-child + .odx-products__text {
	margin-top: 0;
}
.odx-products__qa-block .odx-products__text:last-child {
	margin-bottom: 0;
}

/* ── responsive — live ≤767: full-bleed sections, 30px insets, images fixed
   and centered, Q&A margins collapse to the headings' own 15px padding ── */
@media (max-width: 767px) {
	.odx-products__wrap {
		max-width: none;
		padding: 0;
	}
	.odx-products__cols {
		padding: 0 0 30px;
	}
	.odx-products__cols-grid {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.odx-products__col-img img {
		width: 600px;
		max-width: 100%;
		border-radius: 0;
	}
	.odx-products__col-text {
		justify-content: flex-start;
		padding: 30px;
	}
	.odx-products__col-text .odx-products__h3 {
		margin-bottom: 20px;
	}
	.odx-products__prose-row {
		padding: 0 30px;
	}
	.odx-products__prose {
		max-width: none;
		padding-top: 0;
	}
	.odx-products__textdiv .odx-products__h3 {
		margin-bottom: 20px;
	}
	.odx-products__band-inner {
		padding: 75px 20px;
	}
	.odx-products__qa {
		padding: 30px 0;
	}
	.odx-products__qa-rail {
		max-width: none;
	}
	.odx-products__qa-grid {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.odx-products__qa-lede {
		gap: 0;
		padding: 30px 30px 0;
	}
	.odx-products__qa-block {
		max-width: none;
		padding: 0 30px 30px;
	}
	.odx-products__qa-block .odx-products__text {
		margin: 0;
	}
}
