/**
 * TechBBQ Page Title — centered big-title section for internal pages.
 *
 * Figma About Us section title:
 * - 1024: node 4628:15058
 * - 768:  node 4628:15246
 * - 360:  node 4628:15288
 *
 * Breakpoints (mobile-first): 0–767 (base), 768–1023, 1024–1439, 1440+.
 */

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

.techbbq-page-title__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-title__title {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	font-family: var(--techbbq-font-family-heading);
	font-size: 46px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	word-break: break-word;
}

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

	.techbbq-page-title__title {
		font-size: 64px;
	}
}

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

	.techbbq-page-title__title {
		font-size: var(--techbbq-text-h2-size);
		letter-spacing: var(--techbbq-text-h2-letter-spacing);
	}
}
