/* ==================================================
	FOUNDER SECTION - Mobile First
	Loaded only on pages with the checkbox enabled.
================================================== */

.founder-section {
	background: var(--bg);
	border-top: 0.0625rem solid var(--border);
	padding: 3.5rem 0.625rem;
}

.founder-inner {
	max-width: 75rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.founder-media {
	position: relative;
	margin: 0;
}

.founder-media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.founder-caption {
	position: absolute;
	inset: auto 0 0 0;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(0.25rem);
	padding: 1rem 1.25rem;
}

.founder-caption-label {
	display: block;
	font-family: var(--sans);
	font-size: 0.625rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 0.1875rem;
}

.founder-caption-name {
	display: block;
	font-family: var(--serif);
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.88);
}

.founder-text .section-eyebrow {
	display: block;
	font-family: var(--sans);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.75rem;
}

.founder-text h2 {
	font-family: var(--serif);
	font-size: clamp(1.75rem, 7vw, 2.875rem);
	font-weight: 400;
	line-height: 1.12;
	color: var(--black);
	margin-bottom: 1.25rem;
}

.founder-text p {
	font-family: var(--sans);
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.85;
	color: var(--mid);
	margin-bottom: 1rem;
}

.founder-text p strong {
	color: var(--black);
	font-weight: 500;
}

.founder-btn {
	margin-top: 0.5rem;
}

/* ==================================================
	TABLET (min-width: 641px)
================================================== */

@media (min-width: 641px) {

	.founder-section {
		padding: 4.5rem 0.9375rem;
	}

	.founder-inner {
		gap: 2.5rem;
	}

	.founder-text p {
		font-size: 0.9375rem;
	}

}

/* ==================================================
	DESKTOP (min-width: 901px)
================================================== */

@media (min-width: 901px) {

	.founder-section {
		padding: 6rem 2.5rem;
	}

	.founder-inner {
		grid-template-columns: 26rem 1fr;
		gap: 6rem;
		align-items: center;
	}

	.founder-text {
		padding-right: 1.25rem;
	}

	.founder-text .section-eyebrow {
		margin-bottom: 1rem;
	}

	.founder-text h2 {
		margin-bottom: 1.625rem;
	}

	.founder-text p {
		line-height: 1.9;
		margin-bottom: 1.125rem;
	}

	.founder-btn {
		margin-top: 0.75rem;
	}

}