/* Hero Text - Smaller font to fit 2 lines properly */

.custom-hero-font-1 {
	font-size: clamp(19px, 6vw, 48px) !important;
	line-height: 1.3 !important;
	font-weight: 900 !important;
	letter-spacing: -0.01em !important;
	text-align: center !important;
	margin: 0 auto !important;
	box-sizing: border-box !important;
	display: block !important;
	padding: 0 16px !important;
	width: 100% !important;
	max-width: 100vw !important;
	white-space: normal !important;
}

/* Ensure each line stays together */
.custom-hero-font-1 span {
	display: block;
	white-space: nowrap;
	text-align: center;
}

/* Mobile specific - maximize font size while preventing overflow */
@media (max-width: 767px) {
	.custom-hero-font-1 {
		font-size: clamp(40px, 10.5vw, 52px) !important;
		padding: 0 12px !important;
	}
	
	/* Keep spans together but allow breaking if absolutely necessary */
	.custom-hero-font-1 span {
		white-space: nowrap;
		overflow-wrap: break-word;
		word-break: break-word;
	}
}

/* Small mobile - optimized for iPhone 15 and similar */
@media (max-width: 575px) {
	.custom-hero-font-1 {
		font-size: clamp(38px, 10vw, 50px) !important;
		padding: 0 12px !important;
	}
}

