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

.typeout-highlight-v2 {
	position: relative;
	width: 100%;
	padding: 46px 0 40px;
	background-image: url('../../assets/images/grey-topo.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: visible;
}

.typeout-highlight-v2-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: visible;
}

/* Top Title */
.typeout-highlight-v2-top-title {
	font-family: var(--wp--preset--font-family--palmer-lake-print, serif);
	font-size: 30px;
	font-weight: 400;
	color: var(--wp--preset--color--dark-brown, #2F2E2C);
	text-transform: none;
	margin: 0;
	line-height: 1.4;
}

/* SVG Wrapper */
.typeout-highlight-v2-svg-wrapper {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 40px 0 0 68px;
	overflow: visible;
}

.typeout-highlight-v2-svg {
	width: 100%;
	height: auto;
	display: block;
	overflow: visible;
}

.typeout-highlight-v2-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;
	overflow: visible;
}

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

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

/* Screen reader text */
.typeout-highlight-v2-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: 1024px) {
	.typeout-highlight-v2 {
		overflow: visible;
	}
	
	.typeout-highlight-v2-container {
		padding: 0 20px;
		overflow: visible;
		max-width: 100%;
		width: 100%;
	}
	
	.typeout-highlight-v2-svg-wrapper {
		margin: 40px 0 0;
		width: 100%;
		max-width: 100%;
		padding: 0;
		overflow: visible;
		position: relative;
	}
	
	.typeout-highlight-v2-svg {
		width: 100%;
		max-width: 100%;
		overflow: visible;
	}
	
	.typeout-highlight-v2-svg svg {
		width: 100%;
		max-width: 100%;
		height: auto;
		overflow: visible;
		display: block;
	}
}

@media (max-width: 768px) {
	.typeout-highlight-v2 {
		overflow: visible;
	}
	
	.typeout-highlight-v2-container {
		padding: 0 15px;
		overflow: visible;
		max-width: 100%;
		width: 100%;
	}
	
.typeout-highlight-v2-svg-wrapper {
		margin: 40px 0 0;
		width: 100%;
		max-width: 100%;
		padding: 0;
		overflow: visible;
		position: relative;
	}
	
	.typeout-highlight-v2-svg svg {
		width: 100%;
		max-width: 100%;
		height: auto;
		overflow: visible;
		display: block;
	}
}

@media (max-width: 480px) {
	.typeout-highlight-v2 {
		overflow: visible;
	}
	
	.typeout-highlight-v2-container {
		padding: 0 10px;
		overflow: visible;
		max-width: 100%;
		width: 100%;
	}
	
	.typeout-highlight-v2-svg-wrapper {
		margin: 30px 0 0;
		width: 100%;
		max-width: 100%;
		padding: 0;
		overflow: visible;
		position: relative;
	}
	
	.typeout-highlight-v2-svg svg {
		width: 100%;
		max-width: 100%;
		height: auto;
		overflow: visible;
		display: block;
	}
}

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

