/**
 * Image & Copy V1 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;
}

/* Image & Copy V1 Container */
.image-copy-v1 {
	width: 100%;
	padding: 111px 0;
}
.image-copy-v1.wide {
	padding: 69px 0 0;
}
.image-copy-v1.checkmarks {
	padding: 69px 0 100px;
}

.image-copy-v1-container {
	display: flex;
	align-items: center;
	gap: 127px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px 86px;
}

/* Copy Vertical Alignment - Top */
.image-copy-v1-copy-top {
	align-items: flex-start;
}

/* Copy Vertical Alignment - Center (default) */
.image-copy-v1-copy-center {
	align-items: center;
}

/* Copy Vertical Alignment - Bottom */
.image-copy-v1-copy-bottom {
	align-items: flex-end;
}

/* Image Position - Left (default) */
.image-copy-v1-image-left {
	flex-direction: row;
}

/* Image Position - Right */
.image-copy-v1-image-right {
	flex-direction: row-reverse;
	padding: 0px 60px;
	gap: 100px;
}

/* Image Wrapper */
.image-copy-v1-image-wrapper {
	flex: 0 0 var(--image-width, 50%);
	max-width: var(--image-width, 50%);
	width: 100%;
}

.image-copy-v1-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Content Wrapper */
.image-copy-v1-content {
	flex: 1;
	min-width: 0;
}

/* Copy */
.image-copy-v1-copy {
	font-size: 1rem;
	line-height: 1.6;
	margin: 10px 0 1.5rem 0;
}
.wide .image-copy-v1-container {
	padding: 0 60px 0 60px;
	gap: 134px;
}
.wide.checkmarks .image-copy-v1-container {
	padding: 0 55px 0 60px;
	gap: 95px;
}
.wide .image-copy-v1-container .image-copy-v1-copy p {
	margin:0 0 30px;
}
.image-copy-v1-copy p {
	margin: 0 0 0;
	font-size: 17px;
	line-height: 27px;
}
.image-copy-v1-copy ul li {
	font-size: 17px;
	line-height: 27px;
	margin-bottom: 25px;
	padding-left: 6px;
	width: 101%;
}
.image-copy-v1-copy ul {
	margin: 35px 0 0;
	padding: 0 0 0 18px;
}
.checkmarks .image-copy-v1-copy ul {
	margin: 42px 0 0;
	padding: 0;
	list-style: none;
	max-width: 405px;
}

.image-copy-v1.checkmarks .image-copy-v1-copy ul li {
	list-style: none;
	padding-left: 31px;
	position: relative;
	line-height: 28px;
	margin-bottom: 28px;
}

.image-copy-v1.checkmarks .image-copy-v1-copy ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: inherit;
	font-size: 1.2em;
	line-height: 1.2;
	font-weight: bold;
}
.image-copy-v1-copy p:last-child {
	margin-bottom: 0;
}

.image-copy-v1-copy h1,
.image-copy-v1-copy h2,
.image-copy-v1-copy h3,
.image-copy-v1-copy h4,
.image-copy-v1-copy h5,
.image-copy-v1-copy h6 {
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.image-copy-v1-copy h1:last-child,
.image-copy-v1-copy h2:last-child,
.image-copy-v1-copy h3:last-child,
.image-copy-v1-copy h4:last-child,
.image-copy-v1-copy h5:last-child,
.image-copy-v1-copy h6:last-child {
	margin-bottom: 0;
}
.small-heading .image-copy-v1-copy h2 {
	font-size:37px;
	line-height:43px;
	letter-spacing: 0.01rem;
	margin-bottom: 25px;
}
.large-title .image-copy-v1-image-right {
	gap:150px;
}
.large-title .image-copy-v1-copy h2 {
	font-size:74px;
	line-height:83px;
	margin-bottom: 25px;
}
.small-title .image-copy-v1-copy h2 {
	font-size:56px;
	line-height:62px;
}
.extra-small-title .image-copy-v1-copy h2 {
	font-size:46px;
	line-height: 52px!important;
}
.checkmarks .image-copy-v1-copy h2 {
	line-height:69px;
}
.image-copy-v1-copy h2 {
	font-size:64px;
	line-height: 43px;
	letter-spacing: 0;
	margin-bottom: 35px;
}
.image-copy-v1-copy h3 {
	font-size:37px;
	line-height:43px;
	margin-bottom: 70px;
}
.image-copy-v1-copy h5 {
	font-size:44px;
	margin-bottom: 35px;
}

/* Button Wrapper */
.image-copy-v1-button-wrapper {
	margin-top: 1.5rem;
}

/* Button */
.image-copy-v1-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.5rem;
	background-color: #0d9488;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	transition: background-color 0.3s ease, transform 0.2s ease;
	border: none;
	cursor: pointer;
}

.image-copy-v1-button:hover,
.image-copy-v1-button:focus {
	background-color: #0f766e;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.image-copy-v1-button:active {
	transform: translateY(0);
}

.image-copy-v1-button:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

/* Button Icon Wrapper */
.image-copy-v1-button-icon-wrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* Button Icon */
.image-copy-v1-button-icon {
	width: 1.25rem;
	height: 1.25rem;
	object-fit: contain;
}

.image-copy-v1-button-icon.fa-regular,
.image-copy-v1-button-icon.fa-solid {
	font-size: 1.25rem;
	line-height: 1;
}

/* Button Text */
.image-copy-v1-button-text {
	white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
	.image-copy-v1, .image-copy-v1.wide, .image-copy-v1.checkmarks {
		padding: 30px 0;
	}
	.checkmarks .image-copy-v1-container {
		flex-direction:column-reverse;
	}
	.image-copy-v1-container {
		flex-direction: column;
		gap: 1.5rem;
		padding: 0 30px;
	}
	.large-title .image-copy-v1-image-right {
		gap:1.5rem;
	}
	.wide .image-copy-v1-container {
	    padding: 0 30px 0 30px;
	    gap:1.5rem;
	}
	.image-copy-v1-image-wrapper {
		flex: 1 1 100%;
		max-width: 100%;
		width: 100%;
	}

	.image-copy-v1-content {
		flex: 1 1 100%;
		width: 100%;
	}

	.image-copy-v1-copy {
		font-size: 0.9375rem;
	}

	.image-copy-v1-button {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 500px) {
	.image-copy-v1 {
		padding: 40px 0 20px;
	}
	.image-copy-v1, .image-copy-v1.wide, .image-copy-v1.checkmarks {
        padding: 30px 0 50px;
    }
	.image-copy-v1.mobile-reverse {
		padding-bottom: 60px;
	}

	.image-copy-v1-container {
		padding: 0 30px;
		gap: 30px;
	}
	.mobile-reverse .image-copy-v1-container {
		flex-direction:column-reverse;
	}
	.image-copy-v1-copy {
		font-size: 0.875rem;
	}

	.image-copy-v1-button {
		padding: 0.75rem 1.25rem;
		font-size: 0.9375rem;
	}
	.small-heading .image-copy-v1-copy h2 {
	    font-size: 29px;
	    line-height: 38px;
	    letter-spacing: 0.01rem;
	    margin-bottom: 25px;
	}
	.wide.checkmarks .image-copy-v1-container {
    padding: 0 55px 0 60px;
    gap: 25px;
	} 
	.image-copy-v1-copy h2 {
		font-size:51px;
		line-height:67px;
		margin:10px 0 20px;
	}
	.image-copy-v1-copy h3 {
	    font-size: 29px;
	    line-height: 38px;
	    margin-bottom: 20px;
	}
	.small-title .image-copy-v1-copy h2 {
		font-size:44px;
		line-height:50px;
	}
	.checkmarks .image-copy-v1-copy h2 {
		font-size: 47px;
		line-height: 51px;
		margin:40px 0 20px;
	}
	.extra-small-title .image-copy-v1-copy h2 {
    font-size: 37px;
    line-height: 46px !important;
}
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
	.image-copy-v1-button {
		transition: none;
	}
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
	.image-copy-v1-button {
		border: 2px solid currentColor;
	}
}

/* Print Styles */
@media print {
	.image-copy-v1 {
		background-color: #ffffff;
		padding: 1rem 0;
	}

	.image-copy-v1-container {
		flex-direction: column;
		gap: 1rem;
	}

	.image-copy-v1-image-wrapper {
		max-width: 100%;
	}

	.image-copy-v1-button {
		background-color: #000000;
		color: #ffffff;
		border: 1px solid #000000;
		text-decoration: underline;
	}
}

