/* =========================================================================
   10 · FOUNDER NARRATIVE BAND
   Reference: V4-BUILD-SPEC §4 #6
   ========================================================================= */

.jj-founder {
	background: var(--jj-bg);
	padding-block: var(--section-y);
}

.jj-founder__inner {
	display: grid;
	gap: var(--sp-8);
	align-items: center;
	grid-template-columns: 1fr;
}
@media (min-width: 48em) {
	.jj-founder__inner {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
		gap: var(--sp-12);
	}
}
@media (min-width: 64em) {
	.jj-founder__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
		gap: var(--sp-16);
	}
}

.jj-founder__media {
	position: relative;
	max-width: 420px;
	margin: 0 auto;
}
@media (min-width: 48em) {
	.jj-founder__media { margin: 0; }
}

.jj-founder__media::before {
	content: '';
	position: absolute;
	inset: 12px -12px -12px 12px;
	background: var(--jj-accent-gold);
	border-radius: var(--radius-lg);
	z-index: 0;
	opacity: 0.85;
}

.jj-founder__img,
.jj-founder__media .jj-avatar {
	position: relative;
	z-index: 1;
	border-radius: var(--radius-lg);
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
	box-shadow: var(--shadow-lg);
}

.jj-founder__copy {
	min-width: 0;
}

.jj-founder__title {
	font-size: var(--fs-2xl);
	margin: 0 0 var(--sp-1);
}
.jj-founder__role {
	color: var(--jj-muted);
	font-size: var(--fs-sm);
	margin: 0 0 var(--sp-6);
	font-weight: 500;
}

.jj-founder__quote {
	background: var(--jj-bg-warm);
	padding: var(--sp-6) var(--sp-6) var(--sp-6) var(--sp-6);
	border-left: 3px solid var(--jj-accent-gold);
	border-radius: var(--radius-md);
	margin: 0 0 var(--sp-6);
	position: relative;
}
.jj-founder__quote .jj-icon--quote {
	color: var(--jj-accent-gold);
	opacity: 0.7;
	margin-bottom: var(--sp-3);
}
.jj-founder__quote p {
	font-family: var(--jj-font-serif);
	font-size: var(--fs-lg);
	font-weight: 500;
	line-height: 1.5;
	color: var(--jj-text);
	margin: 0;
}
