/**
 * "Our Story" section: copy + points list on the left, image placeholder
 * with a stat card on the right.
 */

.our-story {
	background-color: var(--color-white);
	padding: 60px 2.5rem;
}

.our-story__inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3.5rem;
}

/* Left: copy */

.our-story__content {
	flex: 1 1 480px;
	max-width: 620px;
}

.our-story__eyebrow {
	font-family: var(--font-body);
	font-style: italic;
	color: var(--color-text);
	font-size: 1.0625rem;
	margin: 0 0 0.75rem;
}

.our-story__heading {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--color-primary);
	font-size: clamp(1.875rem, 3.5vw, 2.5rem);
	line-height: 1.25;
	margin: 0 0 1.25rem;
}

.our-story__text {
	font-family: var(--font-body);
	color: #5a6672;
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0 0 2rem;
}

.our-story__points {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2rem;
	border: 2px dashed rgba(var(--color-primary-rgb), 0.3);
	border-radius: 8px;
	padding: 1.5rem;
}

.our-story__point {
	flex: 1 1 200px;
}

.our-story__point-title {
	font-family: var(--font-body);
	font-weight: 700;
	color: var(--color-primary);
	font-size: 1.0625rem;
	margin: 0 0 0.4rem;
}

.our-story__point-text {
	font-family: var(--font-body);
	color: #5a6672;
	font-size: 0.9375rem;
	line-height: 1.5;
	margin: 0;
}

/* Right: image placeholder + stat card */

.our-story__media {
	position: relative;
	flex: 1 1 420px;
	max-width: 560px;
	padding-bottom: 2.5rem;
}

.our-story__image-placeholder {
	aspect-ratio: 4 / 3;
	background-color: var(--color-primary-tint);
	border: 2px dashed rgba(var(--color-primary-rgb), 0.3);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	color: var(--color-primary);
	text-align: center;
	padding: 1.5rem;
}

.our-story__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 10px;
}

.our-story__image-placeholder svg {
	width: 48px;
	height: 48px;
	opacity: 0.6;
}

.our-story__image-placeholder span {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	opacity: 0.75;
}

.our-story__stat {
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 340px;
	background-color: var(--color-white);
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.18);
	padding: 1.5rem 1.75rem;
}

.our-story__stat-number {
	font-family: var(--font-body);
	font-weight: 700;
	color: var(--color-primary);
	font-size: 1.875rem;
	margin: 0 0 0.35rem;
}

.our-story__stat-label {
	font-family: var(--font-body);
	color: #5a6672;
	font-size: 0.9375rem;
	margin: 0;
}

@media (max-width: 768px) {
	.our-story {
		padding: 3rem 1.25rem;
	}

	.our-story__content,
	.our-story__media {
		flex-basis: 100%;
		max-width: 100%;
	}

	.our-story__stat {
		position: static;
		max-width: 100%;
		margin-top: 1.25rem;
	}

	.our-story__media {
		padding-bottom: 0;
	}
}
