/*
 * ParentRoute universal product approach section.
 */

#PRProductApproach,
#PRProductApproach * {
	box-sizing: border-box;
}

#PRProductApproach {
	--pr-approach-bg: #f0f5f2;
	--pr-approach-text: #13231c;
	--pr-approach-muted: #4f5f57;
	--pr-approach-accent: #ff8f78;
	--pr-approach-width: 1240px;

	width: 100%;
	margin: 0;
	padding: clamp(64px, 7vw, 98px) 20px;

	background: var(--pr-approach-bg);
	color: var(--pr-approach-text);
}

#PRProductApproach .pr-product-approach__inner {
	width: min(100%, var(--pr-approach-width));
	margin-inline: auto;
}

#PRProductApproach .pr-product-approach__header {
	max-width: 720px;
	margin: 0 auto clamp(48px, 5vw, 70px);

	text-align: center;
}

#PRProductApproach .pr-product-approach__title {
	margin: 0;

	color: var(--pr-approach-text);

	font-family: var(--font-heading--family, inherit);
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.04;
	text-wrap: balance;
}

#PRProductApproach .pr-product-approach__intro {
	max-width: 680px;
	margin: 18px auto 0;

	color: var(--pr-approach-muted);

	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 450;
	letter-spacing: -0.018em;
	line-height: 1.48;
	text-wrap: balance;
}

#PRProductApproach .pr-product-approach__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(58px, 7vw, 110px);
	row-gap: clamp(42px, 5vw, 62px);

	max-width: 1180px;
	margin-inline: auto;
}

#PRProductApproach .pr-product-approach__item {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: start;
	gap: 16px;
}

#PRProductApproach .pr-product-approach__icon {
	display: grid;
	place-items: center;

	width: 28px;
	height: 28px;
	margin-top: 1px;

	color: var(--pr-approach-accent);
}

#PRProductApproach .pr-product-approach__icon svg {
	display: block;
	width: 25px;
	height: 25px;
}

#PRProductApproach .pr-product-approach__copy {
	min-width: 0;
}

#PRProductApproach .pr-product-approach__copy h3 {
	margin: 0;

	color: var(--pr-approach-text);

	font-family: inherit;
	font-size: clamp(18px, 1.4vw, 21px);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.25;
}

#PRProductApproach .pr-product-approach__copy p {
	max-width: 500px;
	margin: 11px 0 0;

	color: var(--pr-approach-muted);

	font-size: clamp(15px, 1.18vw, 18px);
	font-weight: 450;
	letter-spacing: -0.012em;
	line-height: 1.48;
}

@media screen and (max-width: 749px) {
	#PRProductApproach {
		padding: 48px 15px 52px;
	}

	#PRProductApproach .pr-product-approach__header {
		margin-bottom: 35px;
		text-align: left;
	}

	#PRProductApproach .pr-product-approach__title {
		max-width: 330px;

		font-size: clamp(30px, 8.5vw, 36px);
		line-height: 1.02;
	}

	#PRProductApproach .pr-product-approach__intro {
		max-width: 350px;
		margin: 17px 0 0;

		font-size: 16px;
		line-height: 1.5;
	}

	#PRProductApproach .pr-product-approach__grid {
		grid-template-columns: 1fr;
		gap: 31px;
	}

	#PRProductApproach .pr-product-approach__item {
		grid-template-columns: 25px minmax(0, 1fr);
		gap: 11px;
	}

	#PRProductApproach .pr-product-approach__icon {
		width: 25px;
		height: 25px;
	}

	#PRProductApproach .pr-product-approach__icon svg {
		width: 22px;
		height: 22px;
	}

	#PRProductApproach .pr-product-approach__copy h3 {
		font-size: 17px;
		line-height: 1.25;
	}

	#PRProductApproach .pr-product-approach__copy p {
		margin-top: 8px;

		font-size: 15px;
		line-height: 1.48;
	}
}