/*---*\
Homepage Half Image/Half Text - Founder V2
Meet Our Founder split layout with YOCS overlay and quote card.

KEY FEATURES:
- Desktop (1200+): image left, copy right, overlapping quote at bottom
- Mid (768-1199): compressed side-by-side; quote stays hidden
- Mobile: stacked image then copy; quote hidden
- Hardcoded YOCS logo and quote mark

IMPLEMENTATION NOTES:
- Tokens from custom-properties.css; section-padding on block root
- Flexbox for split layout
- Mobile type/spacing; mid+ uses --fs-* tokens
\*---*/

.founder-v2 {
	background-color: var(--white);
	padding-bottom: 0;
}

.founder-v2__inner {
	width: 100%;
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding-left: 22px;
	padding-right: 22px;
}

.founder-v2__layout {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
}

.founder-v2__media {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	aspect-ratio: 616 / 810;
	padding: 22px 40px 0;
	border-radius: 20px;
	background-color: var(--grey-100);
	overflow: hidden;
}

.founder-v2__yocs {
	position: absolute;
	z-index: 2;
	top: 9px;
	left: 14px;
	width: 137px;
	pointer-events: none;
}

.founder-v2__yocs img {
	display: block;
	width: 100%;
	height: auto;
}

.founder-v2__image {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 525px;
	margin: 0 auto;
	line-height: 0;
}

.founder-v2__photo,
.founder-v2__image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center top;
}

.founder-v2__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	padding-top: 20px;
}

.founder-v2__titles {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
}

.founder-v2__heading {
	margin: 0;
	padding: 0;
	color: var(--text-heading);
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: var(--font-weight-bold);
	line-height: var(--lh-heading);
}

.founder-v2__subheading {
	margin: 0;
	padding: 0;
	color: var(--text-heading);
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: var(--font-weight-bold);
	line-height: var(--lh-heading);
}

.founder-v2__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	color: var(--text-body);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: var(--font-weight-regular);
	line-height: var(--lh-body);
}

.founder-v2__body p {
	margin: 0;
	padding: 0;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.founder-v2__quote-text {
	margin: 0;
	padding: 0;
}

.founder-v2__cta {
	flex-shrink: 0;
}

.founder-v2__quote {
	display: none;
}

/* Tablet / small laptop: compressed split (quote remains desktop-only). */
@media (min-width: 768px) {
	.founder-v2__inner {
		padding-left: 40px;
		padding-right: 40px;
	}

	.founder-v2__layout {
		flex-direction: row;
		align-items: center;
		gap: 28px;
	}

	.founder-v2__media {
		flex: 0 0 40%;
		width: 40%;
		max-width: none;
		aspect-ratio: auto;
		align-items: flex-end;
		padding: 16px 24px 0;
	}

	.founder-v2__yocs {
		top: 14px;
		left: 14px;
		width: 120px;
	}

	.founder-v2__image {
		max-width: 100%;
	}

	.founder-v2__content {
		flex: 1 1 60%;
		width: 60%;
		min-width: 0;
		gap: 16px;
	}

	.founder-v2__titles {
		gap: 6px;
	}

	.founder-v2__heading {
		font-size: var(--fs-h2);
	}

	.founder-v2__subheading {
		font-size: var(--fs-subheading);
	}

	.founder-v2__body {
		gap: 16px;
		font-size: var(--fs-body);
	}
}

/* Mid desktop: grow the photo column before full desktop widths. */
@media (min-width: 1025px) and (max-width: 1199px) {
	.founder-v2__layout {
		gap: 48px;
	}

	.founder-v2__media {
		flex: 0 0 440px;
		width: 440px;
		max-width: 440px;
		padding: 20px 32px 0;
	}

	.founder-v2__yocs {
		top: 22px;
		left: 20px;
		width: 160px;
	}

	.founder-v2__content {
		max-width: 520px;
		gap: 18px;
	}

	.founder-v2__titles {
		gap: 8px;
	}

	.founder-v2__body {
		gap: 18px;
	}
}

@media (min-width: 1200px) {
	.founder-v2__layout {
		flex-direction: row;
		align-items: flex-start;
		gap: 72px;
	}

	.founder-v2__media {
		flex: 0 0 616px;
		width: 616px;
		max-width: 616px;
		aspect-ratio: auto;
		align-items: center;
		padding: 22px 40px 0;
	}

	.founder-v2__yocs {
		top: 33px;
		left: 26px;
		width: 194px;
	}

	.founder-v2__image {
		max-width: 525px;
	}

	.founder-v2__content {
		flex: 1 1 auto;
		max-width: 576px;
		gap: 20px;
		padding-top: 40px;
	}

	.founder-v2__titles {
		gap: 8px;
	}

	.founder-v2__heading {
		font-size: var(--fs-h2);
	}

	.founder-v2__subheading {
		font-size: var(--fs-subheading);
	}

	.founder-v2__body {
		gap: 20px;
		font-size: var(--fs-body);
	}

	.founder-v2__quote {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		position: absolute;
		left: 565px;
		bottom: 85px;
		z-index: 3;
		width: 666px;
		max-width: calc(100% - 565px);
		margin: 0;
		padding: 25px;
		border-radius: 20px;
		background-color: var(--white);
		box-shadow: 0 0 11.5px rgba(5, 21, 41, 0.04);
	}

	.founder-v2__quote-mark {
		position: absolute;
		top: -13px;
		left: 25px;
		width: 34px;
		height: 26px;
		pointer-events: none;
	}

	.founder-v2__quote-text {
		margin: 0;
		padding: 0;
		width: 100%;
		color: var(--dark-blue);
		font-family: var(--font-body);
		font-size: 23px;
		font-weight: var(--font-weight-regular);
		line-height: var(--lh-body);
	}
}
