/**
 * Typeout Title Block Styles
 *
 * @package made-to-thrive-2026-base
 * @since 1.0.0
 */

.typeout-title {
	position: relative;
	width: 100%;
	padding: 50px 0 25px;
}

.typeout-title-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* SVG Wrapper */
.typeout-title-svg-wrapper {
	position: relative;
	width: 100%;
	max-width: 580px;
}

.typeout-title-svg {
	width: 100%;
	height: auto;
	display: block;
}

.typeout-title-svg svg {
	/* Force responsiveness even if the pasted SVG includes width/height or inline styles */
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	display: block;
}

/* Hide paths initially for animation */
.typeout-title-svg path {
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* Show paths when animated */
.typeout-title-svg path.animated {
	opacity: 1;
}

/* Screen reader text */
.typeout-title-svg-wrapper .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.typeout-title {
		padding: 1.5rem 1rem;
	}

	.typeout-title-svg-wrapper {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.typeout-title {
		padding: 1rem 0.75rem;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.typeout-title-svg path {
		opacity: 1;
		transition: none;
	}
}




