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

/* Screen reader text for accessibility */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

/* Banner V2 Container */
.banner-v2 {
	position: relative;
	width: 100%;
	min-height: 729px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 100px 0 175px;
}

/* Background Wrapper */
.banner-v2-background-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* Background Image */
.banner-v2-background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.banner-v2-background-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Content Wrapper */
.banner-v2-content-wrapper {
	position: relative;
	z-index: 3;
	width: 98%;
	max-width: 1079px;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media (min-width: 769px) {
	.banner-v2-content-wrapper {
		flex-direction: row;
	}
}

/* Text Box - Base Styles */
.banner-v2-text-box {
	width: 100%;
	max-width: 428px;
	padding: 35px 45px 45px;
	position: relative;
	z-index: 2;
	/* Default background if no block color is set */
	background-color: rgba(0, 0, 0, 0.7);
	/* Default text color if no block color is set */
	color: #ffffff;
}

/* Text Box Inner */
.banner-v2-text-box-inner {
	width: 100%;
}

/* Text Box Positioning - Left */
.banner-v2-text-box-left {
	margin-right: auto;
	margin-left: 0;
}

/* Text Box Positioning - Right */
.banner-v2-text-box-right {
	margin-left: auto;
	margin-right: 0;
}
.large-title .banner-v2-heading {
	font-size:74px;
}
/* Heading */
.banner-v2-heading {
	font-size: 64px;
	line-height: 83px;
	font-weight: 100;
	margin: 0 0 15px;
	/* Inherit text color from parent */
	color: inherit;
}

/* Copy */
.banner-v2-copy {
	font-size: 17px;
	line-height: 26px;
	margin: 0;
	/* Inherit text color from parent */
	color: inherit;
}

/* Mobile Image Wrapper - Hidden on desktop */
.banner-v2-mobile-image-wrapper {
	display: none;
	width: 100%;
	margin-top: 2rem;
}

.banner-v2-mobile-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
	.banner-v2 {
		min-height: auto;
		padding: 0;
	}

	/* Hide background image on mobile */
	.banner-v2-background-wrapper {
		display: none;
	}

	.banner-v2-content-wrapper {
		padding: 0;
		min-height: auto;
		width: 100%;
	}

	.banner-v2-text-box {
		max-width: 100%;
		padding: 30px 30px 40px;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}

	.banner-v2-heading {
		margin-bottom: 10px;
		font-size: 51px;
	}

	.banner-v2-copy {
		font-size: 1rem;
	}

	/* Show mobile image below copy on mobile */
	.banner-v2-mobile-image-wrapper {
		display: block;
		width: 100%;
		margin-top: 0;
	}
}

@media (max-width: 500px) {
	.banner-v2-heading {
		font-size: 51px;
	}
	.banner-v2-text-box {
		padding:30px 30px 50px;
	}
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
	.banner-v2-background-img {
		transition: none;
	}
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
	.banner-v2-text-box {
		border: 2px solid currentColor;
	}
}

/* Print Styles */
@media print {
	.banner-v2-background-wrapper {
		display: none;
	}

	.banner-v2 {
		background-color: #f5f5f5;
		min-height: auto;
	}

	.banner-v2-text-box {
		background-color: #ffffff;
		color: #000000;
		border: 1px solid #000000;
	}
}

