.about-story {
	position: relative;
	overflow: hidden;
	padding: 66px 0;
	color: var(--navy);
	background: #fff0e2;
}

.about-story-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(230px, .75fr) minmax(0, 1.75fr);
	align-items: center;
	gap: 70px;
}

.about-story h2 {
	margin: 0;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 600;
	text-align: center;
}

.about-story-content {
	font-size: 16px;
	line-height: 1.55;
}

.about-story-content p {
	margin: 0 0 12px;
}

.about-story-content p:last-child {
	margin-bottom: 0;
}

.about-story-content strong {
	font-weight: 800;
}

.about-story-decoration {
	position: absolute;
	color: #e8d9ca;
	font-size: 92px;
	opacity: .28;
	transform: rotate(-18deg);
}

.about-story-decoration-left {
	top: 36px;
	left: 5%;
}

.about-story-decoration-right {
	right: 5%;
	bottom: 22px;
	transform: rotate(18deg);
}

@media (max-width: 820px) {
	.about-story-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.about-story h2 {
		text-align: left;
	}
}

@media (max-width: 560px) {
	.about-story {
		padding: 48px 0;
	}

	.about-story-content {
		font-size: 15px;
	}
}
