.founder__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.founder__name {
	font-size: 40px;
	font-weight: 700;
	margin: 0 0 26px;
}
.founder__role {
	color: var(--orange);
	font-weight: 600;
	margin: 4px 0 28px;
}
.founder__quote {
	margin: 0 0 24px;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--navy);
}
.founder__quote::before {
	content: "\201C";
	display: block;
	font-size: 64px;
	line-height: 0.5;
	color: var(--orange);
	margin-bottom: 16px;
}
.founder__quote::after {
	content: "\201D";
	display: block;
	text-align: right;
	font-size: 64px;
	line-height: 0;
	margin-top: 30px;
	color: var(--orange);
}
.founder__text {
	color: var(--navy);
	line-height: 1.7;
	margin: 0 0 22px;
}
.founder__content .separator {
	width: 55%;
	background: var(--navy);
	margin: 4px 0 26px;
}
.founder__media {
	position: relative;
	align-self: stretch;
	min-height: 440px;
	overflow: hidden;
	margin-right: calc(var(--gutter) * -1 - max(0px, (100vw - var(--container)) / 2));
}
.founder__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(16% 0, 100% 0, 100% 100%, 4% 100%);
	z-index: 2;
}
.founder__shape {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--orange);
	clip-path: polygon(16% 0, 14.5% 0, 2.5% 100%, 4% 100%);
}
.section--light .timeline-section{
	padding-bottom: 0;
}
.timeline {
	display: flex;
	margin-top: 48px;
}
.timeline-card {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 350px;
	padding: 40px 26px 44px;
	background: var(--orange);
	color: #fff;
}
.timeline-card:nth-child(2) {
	background: #f7795a;
}
.timeline-card:nth-child(3) {
	background: #f88d72;
}
.timeline-card:nth-child(4) {
	background: #f9a78f;
}
.timeline-card:nth-child(5) {
	background: #fbc1b0;
}
.timeline-card .icon-arrow {
	position: absolute;
	top: 28px;
	right: 24px;
	background-color: #fff;
}
.timeline-card__year {
	font-size: 80px;
	font-weight: 700;
	margin-bottom: 12px;
	line-height: 1;
}
.timeline-card__label {
	margin: 0;
}

@media screen and (max-width: 1080px) {
	.founder__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.timeline {
		flex-wrap: wrap;
	}
	.founder__media img, .founder__media{
		height: 400px;
		min-height: 400px;
		clip-path: content-box;
	}
	.founder__media {
		margin-right: 0;
	}
	.timeline-card {
		flex: 1 1 45%;
		min-height: fit-content;
	}
	.timeline-card .icon-arrow, .cta__title br, .founder__shape{
		display: none;
	}
}

@media screen and (max-width: 600px) {
	.timeline-card {
		flex: 1 1 100%;
	}
}