/**
 * Home "A word from our founder" section styles — Figma node 2617:2437.
 */

.gh-founder {
	/* Full-bleed out of the .site-content (max 1120px) wrapper. */
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background-color: var(--gh-green);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 64px 160px;
}

.gh-founder__card {
	max-width: 1120px;
	margin: 0 auto;
	background: var(--gh-white);
	border-radius: 24px;
	padding: 64px 96px;
}

.gh-founder__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 992px;
}

.gh-founder__eyebrow {
	margin: 0;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: var(--gh-text-secondary);
}

.gh-founder__quote {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gh-founder__headline {
	margin: 0;
	font-family: 'schibsted_grotesk_demi', Arial, sans-serif;
	font-weight: normal;
	font-size: 24px;
	line-height: 40px;
	color: var(--gh-text-primary);
}

.gh-founder__quote p {
	margin: 0;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: var(--gh-text-primary);
}

.gh-founder__attribution {
	display: flex;
	flex-direction: column;
}

.gh-founder__name {
	margin: 0;
	font-family: 'schibsted_grotesk_demi', Arial, sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: var(--gh-text-primary);
}

.gh-founder__role {
	margin: 0;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: var(--gh-text-secondary);
}

.gh-founder__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: #008392;
	text-decoration: underline;
}

.gh-founder__link svg {
	flex-shrink: 0;
}

/* Laptop / small desktop (1024–1439px): tighter 80px sides + reduced vertical. */
@media (min-width: 1024px) and (max-width: 1439px) {
	.gh-founder {
		padding: 48px 40px;
	}
}

@media (max-width: 1023px) {
	.gh-founder {
		padding: 48px 24px;
	}

	.gh-founder__card {
		padding: 40px 24px;
	}
}

@media (max-width: 768px) {
	/* Figma node 3173:13055: on mobile the green background image and the white
	   card are dropped — the quote sits directly on the page background with
	   16px side gutters and 48px top/bottom. */
	.gh-founder {
		background-image: none !important;
		background-color: transparent;
		padding: 48px 16px;
	}

	.gh-founder__card {
		max-width: none;
		background: none;
		border-radius: 0;
		padding: 0;
	}

	.gh-founder__inner {
		gap: 32px;
	}

	.gh-founder__headline {
		font-size: 24px;
		line-height: 32px;
	}

	.gh-founder__attribution {
		gap: 4px;
	}
}
