.chs-section {
	--chs-section-bg: #f6f7fb;
	--chs-section-text: #14233d;
	--chs-accent: #ff8c42;
	--chs-card-bg: #ffffff;
	position: relative;
	padding: 34px;
	border-radius: 32px;
	background:
		radial-gradient(circle at top left, color-mix(in srgb, var(--chs-accent) 14%, transparent), transparent 34%),
		linear-gradient(180deg, color-mix(in srgb, var(--chs-section-bg) 88%, white) 0%, var(--chs-section-bg) 100%);
	color: var(--chs-section-text);
	box-shadow: 0 24px 56px rgba(20, 35, 61, 0.08);
	overflow: hidden;
}

.chs-header {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.chs-eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--chs-accent);
}

.chs-header h2 {
	margin: 0;
	font-size: clamp(2rem, 3vw, 3.3rem);
	line-height: 0.96;
	letter-spacing: -0.04em;
	font-family: inherit;
}

.chs-header p {
	margin: 14px 0 0;
	line-height: 1.78;
	color: color-mix(in srgb, var(--chs-section-text) 76%, transparent);
}

.chs-timeline {
	position: relative;
	display: grid;
	gap: 18px;
	max-width: 1100px;
	margin: 0 auto;
}

.chs-timeline::before {
	content: "";
	position: absolute;
	top: 8px;
	bottom: 8px;
	left: 50%;
	width: 2px;
	transform: translateX(-50%);
	background: linear-gradient(180deg, color-mix(in srgb, var(--chs-accent) 35%, white), color-mix(in srgb, var(--chs-accent) 12%, transparent));
	opacity: 0.7;
}

.chs-story {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 42px 1fr;
	gap: 18px;
	align-items: center;
}

.chs-story.is-left .chs-story__card {
	grid-column: 1;
}

.chs-story.is-right .chs-story__card {
	grid-column: 3;
}

.chs-story__pin {
	grid-column: 2;
	width: 18px;
	height: 18px;
	margin: 0 auto;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--chs-accent) 0%, color-mix(in srgb, var(--chs-accent) 60%, #8c3d11) 100%);
	box-shadow: 0 0 0 8px color-mix(in srgb, var(--chs-accent) 12%, white);
}

.chs-story__card {
	position: relative;
	border-radius: 24px;
	background: var(--chs-card-bg);
	box-shadow: 0 18px 42px rgba(20, 35, 61, 0.08);
	border: 1px solid color-mix(in srgb, var(--chs-accent) 12%, #dce6f5);
	overflow: hidden;
}

.chs-story.is-left .chs-story__card {
	transform: rotate(-0.8deg);
}

.chs-story.is-right .chs-story__card {
	transform: rotate(0.8deg);
}

.chs-story__media {
	aspect-ratio: 1.65;
	background: linear-gradient(135deg, #dfe9f8, #f7fafc);
}

.chs-story__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.chs-story__body {
	padding: 20px;
}

.chs-story__year {
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--chs-accent) 12%, white);
	color: color-mix(in srgb, var(--chs-accent) 78%, #5f2f11);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.chs-story__body h3 {
	margin: 14px 0 0;
	font-size: 1.55rem;
	line-height: 1.05;
	letter-spacing: -0.03em;
	font-family: inherit;
}

.chs-story__body p {
	margin: 12px 0 0;
	line-height: 1.74;
	color: color-mix(in srgb, var(--chs-section-text) 78%, transparent);
}

.chs-story__quote {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 16px;
	background: color-mix(in srgb, var(--chs-accent) 8%, white);
	border-left: 4px solid color-mix(in srgb, var(--chs-accent) 72%, #5f2f11);
	font-size: 0.95rem;
	line-height: 1.65;
	color: color-mix(in srgb, var(--chs-section-text) 82%, transparent);
}

@media (max-width: 900px) {
	.chs-section {
		padding: 26px;
	}

	.chs-timeline::before {
		left: 10px;
		transform: none;
	}

	.chs-story {
		grid-template-columns: 24px 1fr;
		gap: 14px;
		align-items: start;
	}

	.chs-story__pin {
		grid-column: 1;
		margin-top: 18px;
	}

	.chs-story__card,
	.chs-story.is-left .chs-story__card,
	.chs-story.is-right .chs-story__card {
		grid-column: 2;
		transform: none;
	}

	.chs-story__media {
		aspect-ratio: 1.42;
	}
}

@media (max-width: 640px) {
	.chs-section {
		padding: 18px;
		border-radius: 22px;
	}

	.chs-header {
		text-align: left;
		margin-bottom: 20px;
	}

	.chs-header h2 {
		font-size: clamp(1.6rem, 7vw, 2.2rem);
		line-height: 1.02;
	}

	.chs-header p {
		margin-top: 10px;
		font-size: 0.96rem;
		line-height: 1.68;
	}

	.chs-timeline {
		gap: 14px;
	}

	.chs-timeline::before {
		left: 9px;
		top: 2px;
		bottom: 2px;
	}

	.chs-story {
		grid-template-columns: 20px 1fr;
		gap: 10px;
	}

	.chs-story__pin {
		width: 14px;
		height: 14px;
		margin-top: 16px;
		box-shadow: 0 0 0 6px color-mix(in srgb, var(--chs-accent) 10%, white);
	}

	.chs-story__card {
		border-radius: 20px;
	}

	.chs-story__media {
		aspect-ratio: 1.18;
	}

	.chs-story__body {
		padding: 16px;
	}

	.chs-story__year {
		font-size: 10px;
		letter-spacing: 0.12em;
		padding: 6px 10px;
	}

	.chs-story__body h3 {
		font-size: 1.2rem;
		line-height: 1.08;
	}

	.chs-story__body p {
		font-size: 0.95rem;
		line-height: 1.62;
	}

	.chs-story__quote {
		margin-top: 12px;
		padding: 11px 12px;
		border-radius: 14px;
		font-size: 0.92rem;
		line-height: 1.56;
	}
}
