/* "Where It Started" section */
.section-hero {
	background: var(--color-cream);
	padding: 100px var(--container-gutter);
	width: 100%;
}

.section-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	max-width: 1620px;
	margin: 0 auto;
}

.section-hero__text {
	padding-top: 163px;
	text-align: center;
}

.section-hero__title {
	font-family: var(--font-heading);
	font-size: 92px;
	line-height: 100px;
	color: var(--color-black);
	text-transform: uppercase;
	margin-bottom: 25px;
}

.section-hero__body {
	font-family: var(--font-heading-reg);
	font-size: 24px;
	line-height: 36px;
	color: var(--color-black);
	text-transform: uppercase;
}

.section-hero__image {
	border-radius: 40px;
	overflow: hidden;
	height: 840px;
}

.section-hero__image img {
	width: 100%;
	height: 150%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.section-hero {
		padding: 50px 50px 100px;
	}

	.section-hero__grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.section-hero__text {
		padding-top: 0;
		order: 1;
	}

	.section-hero__image {
		order: 2;
		height: 500px;
		border-radius: 40px;
	}

	.section-hero__title {
		font-size: 70px;
		line-height: 80px;
	}

	.section-hero__body {
		font-size: 20px;
		line-height: 34px;
	}
}

@media (max-width: 480px) {
	.section-hero {
		padding: 30px 24px 60px;
	}

	.section-hero__image {
		height: 400px;
		border-radius: 30px;
	}

	.section-hero__title {
		font-size: 48px;
		line-height: 56px;
	}

	.section-hero__body {
		font-size: 16px;
		line-height: 28px;
	}
}
