/* =================================================================
   Emerald Founder Message
   ================================================================= */

.emerald-founder {
	--emerald-founder-w: 42%;
	display: grid;
	grid-template-columns: minmax(220px, var(--emerald-founder-w)) minmax(0, 1fr);
	grid-template-areas: "media copy";
	align-items: center;
	gap: 72px;
	width: 100%;
}

.emerald-founder--image-right {
	grid-template-columns: minmax(0, 1fr) minmax(220px, var(--emerald-founder-w));
	grid-template-areas: "copy media";
}

.emerald-founder__media {
	grid-area: media;
	position: relative;
	min-width: 0;
	line-height: 0;
}

.emerald-founder__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: bottom center;
}

.emerald-founder__plate {
	position: absolute;
	left: 50%;
	bottom: 6%;
	z-index: 1;
	min-width: 200px;
	padding: 14px 28px 16px;
	text-align: center;
	border: 0.95px solid #ffffff54;
	border-radius: 10px;
	background: #1d5f5180;
	box-shadow: 0 7.61px 30.44px 0 #1f2d2a14;
	-webkit-backdrop-filter: blur(8.18px);
	backdrop-filter: blur(8.18px);
	transform: translateX(-50%);
}

.emerald-founder__name {
	margin: 0;
	color: #ffffff;
	font-family: 'Manrope', sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.emerald-founder__role {
	margin: 4px 0 0;
	color: #ffffff;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
}

.emerald-founder__copy {
	grid-area: copy;
	min-width: 0;
	padding-top: 8px;
}

.emerald-founder__title {
	margin: 0 0 20px;
	color: var(--emerald-heading-color, #1f2d2a);
	font-family: 'Manrope', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
}

.emerald-founder__text {
	margin: 0;
	color: var(--emerald-text-color, #1f2d2a);
	font-family: 'Source Sans 3', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}

.emerald-founder__text p {
	margin: 0 0 1em;
}

.emerald-founder__text p:last-child {
	margin-bottom: 0;
}

.emerald-founder__actions {
	margin-top: 28px;
}

@media (max-width: 1024px) {
	.emerald-founder,
	.emerald-founder--image-right {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 28px;
		grid-template-columns: none;
		grid-template-areas: none;
	}

	.emerald-founder__media {
		width: 100%;
		max-width: 420px;
		margin: 0 auto;
	}

	.emerald-founder__copy {
		order: -1;
		padding-top: 0;
	}

	.emerald-founder__title {
		font-size: 26px;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.emerald-founder__media {
		max-width: none;
	}

	.emerald-founder__plate {
		min-width: 0;
		padding: 12px 20px 14px;
	}

	.emerald-founder__name {
		font-size: 20px;
	}
}
