.mtw-founder__grid {
	display: grid;
	grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
	gap: clamp(42px, 7vw, 84px);
	align-items: center;
}

.mtw-founder__portrait-wrap {
	position: relative;
	padding: 14px;
	border-radius: 26px;
	background: linear-gradient(145deg, #e5eff8, #fff);
	box-shadow: 0 24px 60px rgba(11, 36, 64, .13);
}

.mtw-founder__portrait-wrap::before {
	content: "";
	position: absolute;
	left: -16px;
	bottom: -16px;
	z-index: 0;
	width: 110px;
	height: 110px;
	border-radius: 24px;
	background: var(--mtw-primary);
}

.mtw-founder__portrait {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1.06;
	object-fit: cover;
	object-position: center 18%;
	border-radius: 18px;
}

.mtw-founder__story h2 {
	margin: 0 0 20px;
	font-size: clamp(32px, 4.4vw, 49px);
	line-height: 1.12;
	letter-spacing: -.03em;
}

.mtw-founder__story > p:not(.mtw-eyebrow) {
	margin: 0 0 17px;
	color: var(--mtw-muted);
	font-size: 17px;
}

.mtw-founder blockquote {
	margin: 28px 0;
	padding: 20px 24px;
	border-left: 4px solid var(--mtw-accent);
	border-radius: 0 12px 12px 0;
	background: #edf5fc;
	color: var(--mtw-navy);
	font-size: 18px;
	font-weight: 750;
	line-height: 1.55;
}

.mtw-founder__identity {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.mtw-founder__identity strong {
	font-size: 18px;
}

.mtw-founder__identity span {
	color: var(--mtw-muted);
	font-size: 13px;
	font-weight: 700;
}

.mtw-founder__email {
	display: inline-block;
	margin-top: 7px;
	font-weight: 800;
	text-decoration: none;
}

@media (max-width: 820px) {
	.mtw-founder__grid {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.mtw-founder__portrait-wrap {
		width: min(420px, calc(100% - 8px));
		margin-inline: auto;
	}
}

@media (max-width: 430px) {
	.mtw-founder__story > p:not(.mtw-eyebrow) {
		font-size: 16px;
	}

	.mtw-founder blockquote {
		padding: 17px 18px;
		font-size: 16px;
	}

	.mtw-founder__identity {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
	}
}

