/* "How It Grew" section */
.section-story {
	background: var(--color-cream);
	padding: 100px 190px 150px;
	width: 100%;
}

.section-story__layout {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1620px;
	margin: 0 auto;
	position: relative;
}

.section-story__illustration {
	width: 433px;
	height: 485px;
	flex-shrink: 0;
}

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

.section-story__content {
	max-width: 708px;
	text-align: center;
}

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

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

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

	.section-story__layout {
		flex-direction: column;
		align-items: center;
		gap: 50px;
	}

	.section-story__content {
		max-width: 100%;
		order: 1;
	}

	.section-story__illustration {
		order: 2;
		width: 433px;
		max-width: 100%;
		height: auto;
	}

	.section-story__illustration img {
		height: auto;
	}

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

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

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

	.section-story__illustration {
		width: 300px;
	}

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

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