.about-the-founder {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.about-the-founder .mbm-section-bg {
    opacity: .7;
}

.about-the-founder__container {
	position: relative;
	z-index: 1;
}

.about-the-founder__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	grid-template-areas:
		"title media"
		"body media";
	gap: 1.25rem clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.about-the-founder__grid:not(:has(.about-the-founder__media-col)) {
	grid-template-columns: minmax(0, 1fr);
	grid-template-areas:
		"title"
		"body";
}

.about-the-founder__title-col {
	grid-area: title;
	min-width: 0;
}

.about-the-founder__body-col {
	grid-area: body;
	min-width: 0;
}

.about-the-founder__body-col > .about-the-founder__subtitle + .mbm-section-text,
.about-the-founder__body-col > .mbm-section-text + .about-the-founder__details,
.about-the-founder__body-col > .about-the-founder__subtitle + .about-the-founder__details {
	margin-top: clamp(2rem, 3vw, 2.75rem);
}

.about-the-founder__details {
	margin-top: 0;
}

.about-the-founder__subtitle {
	margin: 0;
	color: var(--color-navy);
	font-size: clamp(1.125rem, 1.6vw, 1.375rem);
	font-weight: 600;
	line-height: 1.35;
}

.about-the-founder__subtitle + .about-the-founder__list {
	margin-top: 1.25rem;
}

.about-the-founder__list .mbm-icon-list__item + .mbm-icon-list__item {
	margin-top: 1rem;
}

.about-the-founder__list-icon {
	flex: 0 0 1.125rem;
	width: 1.125rem;
	height: 1.1875rem;
}

.about-the-founder__media-col {
	grid-area: media;
	min-width: 0;
	align-self: center;
}

.about-the-founder__media {
	position: relative;
	width: min(100%, 18rem);
	margin-inline: auto 0;
	padding: 0 clamp(1rem, 4vw, 1.5rem) clamp(2rem, 14%, 3.25rem) 0;
	top: -3rem;
}

.about-the-founder__media-accent {
	position: absolute;
	top: -30px;
    left: 40px;
    right: -40px;
    bottom: 20px;
	z-index: 0;
	border-radius: 1rem;
	background: transparent linear-gradient(
		239deg, #02828b 30%, #001959 120%, #000000 100%) 0 0 no-repeat padding-box;
}

.about-the-founder__media-image {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
	border-radius: 1rem;
	box-shadow: -0.625rem 0.875rem 1.75rem rgb(0 25 89 / 22%);
}

.about-the-founder__media-image picture {
	display: block;
}

.about-the-founder__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center top;
}

@media (max-width: 991px) {
	.about-the-founder__grid,
	.about-the-founder__grid:not(:has(.about-the-founder__media-col)) {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"title"
			"media"
			"body";
		gap: 2rem;
	}

	.about-the-founder__media-col {
		align-self: auto;
	}

	.about-the-founder__media {
		width: min(100%, 20rem);
		margin-inline: auto;
		padding: 0 clamp(0.75rem, 3vw, 1.25rem) 0 0;
		top: 0;
	}

	.about-the-founder__media-accent {
		top: -10px;
        left: 20px;
        right: -10px;
        bottom: 30px;
	}
}
