/**
 * TechBBQ Page Highlight Text — centered copy with primary + muted spans.
 *
 * Figma About Us intro copy:
 * - 1440: node 5207:50434
 * - 1024: node 4628:15063
 * - 768:  node 4628:15251
 * - 360:  node 4628:15293
 *
 * Breakpoints (mobile-first): 0–767 (base), 768–1023, 1024–1439, 1440+.
 */

.techbbq-page-highlight-text {
	box-sizing: border-box;
	width: 100%;
	color: var(--techbbq-content-primary);
	background-color: var(--techbbq-bg-main);
}

.techbbq-page-highlight-text__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: var(--techbbq-section-space-medium);
	padding-bottom: var(--techbbq-section-space-medium);
}

.techbbq-page-highlight-text__text {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin: 0;
	font-family: var(--techbbq-font-family-heading);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	word-break: break-word;
}

.techbbq-page-highlight-text__highlight {
	color: var(--techbbq-content-primary);
}

.techbbq-page-highlight-text__body {
	color: var(--techbbq-content-secondary);
}

@media (min-width: 768px) {
	.techbbq-page-highlight-text__inner {
		padding-top: var(--techbbq-space-10);
		padding-bottom: var(--techbbq-space-10);
	}

	.techbbq-page-highlight-text__text {
		max-width: 720px;
		font-size: 28px;
	}
}

@media (min-width: 1024px) {
	.techbbq-page-highlight-text__inner {
		padding-top: var(--techbbq-section-space-large);
		padding-bottom: var(--techbbq-section-space-large);
	}

	.techbbq-page-highlight-text__text {
		max-width: 900px;
		font-size: var(--techbbq-text-h5-size);
		letter-spacing: var(--techbbq-text-h5-letter-spacing);
	}
}

@media (min-width: 1440px) {
	.techbbq-page-highlight-text__text {
		max-width: 1052px;
	}
}
