.honar-my-story {
	--honar-my-story-bg: #fbf8f1;
	--honar-my-story-accent: #d38a0d;
	--honar-my-story-text: #21170f;
	--honar-my-story-muted: #655b52;
	--honar-my-story-border: rgba(211, 138, 13, 0.26);
	width: 100%;
	padding: clamp(28px, 4vw, 72px) clamp(14px, 1.5vw, 28px) 0;
	background: #fff;
}

.honar-my-story__container {
	position: relative;
	overflow: hidden;
	max-width: none;
	padding: 0;
	background:
		radial-gradient(circle at 88% 15%, rgba(255, 220, 151, 0.22), transparent 25%),
		linear-gradient(135deg, #fffdf9 0%, var(--honar-my-story-bg) 100%);
	border: 1px solid rgba(209, 160, 77, 0.12);
	border-radius: clamp(22px, 2vw, 34px);
}

.honar-my-story__row {
	min-height: clamp(520px, 39vw, 660px);
}

.honar-my-story__media-col,
.honar-my-story__content-col {
	min-width: 0;
}

.honar-my-story__media {
	height: 100%;
	min-height: 500px;
	padding: clamp(24px, 3vw, 50px) clamp(20px, 3vw, 54px);
	display: flex;
	align-items: stretch;
}

.honar-my-story__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 440px;
	object-fit: cover;
	object-position: center;
	border-radius: clamp(32px, 4vw, 72px) clamp(32px, 4vw, 72px) clamp(18px, 2vw, 34px) clamp(18px, 2vw, 34px);
}

.honar-my-story__content-col {
	display: flex;
	align-items: center;
}

.honar-my-story__content {
	width: 100%;
	padding: clamp(34px, 4vw, 68px) clamp(30px, 5vw, 92px) clamp(30px, 3vw, 54px) clamp(24px, 3vw, 58px);
	text-align: center;
	color: var(--honar-my-story-text);
}

.honar-my-story__eyebrow-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 22px;
	color: var(--honar-my-story-accent);
}

.honar-my-story__eyebrow-wrap span {
	position: relative;
	width: clamp(46px, 5vw, 92px);
	height: 1px;
	background: currentColor;
	opacity: 0.75;
}

.honar-my-story__eyebrow-wrap span:first-child::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	transform: translateY(-50%);
}

.honar-my-story__eyebrow-wrap strong {
	font-size: clamp(1rem, 1.2vw, 1.25rem);
	font-weight: 700;
}

.honar-my-story__title {
	margin: 0;
	font-size: clamp(2rem, 3.4vw, 4rem);
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: -0.035em;
}

.honar-my-story__title mark {
	padding: 0;
	background: transparent;
	color: var(--honar-my-story-accent);
}

.honar-my-story__divider {
	display: flex;
	justify-content: center;
	margin: 26px 0 28px;
}

.honar-my-story__divider span {
	position: relative;
	width: 120px;
	height: 1px;
	background: var(--honar-my-story-border);
}

.honar-my-story__divider span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border: 1px solid var(--honar-my-story-accent);
	background: var(--honar-my-story-bg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.honar-my-story__text {
	max-width: 650px;
	margin-inline: auto;
	color: var(--honar-my-story-muted);
	font-size: clamp(1rem, 1.15vw, 1.22rem);
	line-height: 2;
}

.honar-my-story__text p {
	margin: 0;
}

.honar-my-story__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: clamp(28px, 3vw, 48px);
}

.honar-my-story__stat {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 0 clamp(8px, 1.2vw, 20px);
}

.honar-my-story__stat:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 5%;
	left: 0;
	width: 1px;
	height: 90%;
	background: var(--honar-my-story-border);
}

.honar-my-story__stat svg {
	width: 44px;
	height: 44px;
	margin-bottom: 4px;
	color: var(--honar-my-story-accent);
}

.honar-my-story__stat strong {
	font-size: clamp(0.95rem, 1.05vw, 1.15rem);
	font-weight: 800;
}

.honar-my-story__stat span {
	color: #7a7169;
	font-size: clamp(0.8rem, 0.9vw, 1rem);
	line-height: 1.6;
}

@media (max-width: 1199.98px) {
	.honar-my-story__content {
		padding-inline: 32px;
	}

	.honar-my-story__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 0;
	}

	.honar-my-story__stat:nth-child(2)::after {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.honar-my-story {
		padding: 32px 12px 0;
	}

	.honar-my-story__row {
		min-height: auto;
	}

	.honar-my-story__content {
		padding: 48px 24px 30px;
	}

	.honar-my-story__media {
		min-height: auto;
		padding: 18px;
	}

	.honar-my-story__image {
		height: auto;
		min-height: 0;
		aspect-ratio: 1.12 / 1;
		border-radius: 34px;
	}
}

@media (max-width: 575.98px) {
	.honar-my-story__content {
		padding: 38px 18px 22px;
	}

	.honar-my-story__title {
		font-size: clamp(1.75rem, 9vw, 2.45rem);
	}

	.honar-my-story__text {
		font-size: 0.95rem;
		line-height: 1.95;
	}

	.honar-my-story__stats {
		grid-template-columns: 1fr 1fr;
		margin-top: 34px;
	}

	.honar-my-story__stat {
		padding-inline: 8px;
	}

	.honar-my-story__media {
		padding: 32px 12px 0;
	}

	.honar-my-story__image {
		aspect-ratio: 0.98 / 1;
	}
}

/* v0.9.1 — compact desktop/tablet rhythm */
@media (min-width: 992px) {
	.honar-my-story { padding-top: clamp(20px, 2.6vw, 48px); }
	.honar-my-story__row { min-height: clamp(390px, 29vw, 480px); }
	.honar-my-story__media { min-height: 360px; padding: clamp(18px, 2vw, 34px) clamp(16px, 2vw, 36px); }
	.honar-my-story__image { min-height: 330px; }
	.honar-my-story__content { padding: clamp(24px, 2.8vw, 46px) clamp(24px, 3.5vw, 64px); }
	.honar-my-story__eyebrow-wrap { margin-bottom: 14px; }
	.honar-my-story__divider { margin: 16px 0 18px; }
	.honar-my-story__text { line-height: 1.75; }
	.honar-my-story__stats { margin-top: clamp(18px, 2vw, 30px); }
	.honar-my-story__stat svg { width: 36px; height: 36px; }
}


/* v0.9.2 — one-third reduction from the compact desktop height */
@media (min-width: 992px) {
	.honar-my-story {
		padding-top: clamp(14px, 1.7vw, 32px);
	}

	.honar-my-story__row {
		min-height: clamp(280px, 20vw, 320px);
	}

	.honar-my-story__media {
		min-height: 0;
		padding: clamp(12px, 1.25vw, 20px);
	}

	.honar-my-story__image {
		min-height: 0;
		height: 100%;
		max-height: 288px;
	}

	.honar-my-story__content {
		padding: clamp(14px, 1.4vw, 24px) clamp(18px, 2.4vw, 42px);
	}

	.honar-my-story__eyebrow-wrap {
		margin-bottom: 8px;
	}

	.honar-my-story__eyebrow-wrap strong {
		font-size: clamp(.82rem, .9vw, 1rem);
	}

	.honar-my-story__title {
		font-size: clamp(1.55rem, 2.25vw, 2.7rem);
		line-height: 1.25;
	}

	.honar-my-story__divider {
		margin: 8px 0 10px;
	}

	.honar-my-story__text {
		max-width: 720px;
		font-size: clamp(.8rem, .8vw, .94rem);
		line-height: 1.48;
	}

	.honar-my-story__text p + p {
		margin-top: 2px;
	}

	.honar-my-story__stats {
		margin-top: clamp(10px, 1vw, 16px);
	}

	.honar-my-story__stat {
		gap: 2px;
	}

	.honar-my-story__stat svg {
		width: 27px;
		height: 27px;
		margin-bottom: 0;
	}

	.honar-my-story__stat strong {
		font-size: clamp(.78rem, .78vw, .9rem);
	}

	.honar-my-story__stat span {
		font-size: clamp(.68rem, .7vw, .8rem);
		line-height: 1.35;
	}
}

/* v0.9.6 — support the new 450 × 450 My Story image without cropping */
.honar-my-story__media {
	align-items: center;
	justify-content: center;
}

.honar-my-story__image {
	width: min(100%, 450px);
	max-width: 450px;
	height: auto;
	min-height: 0;
	max-height: none;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	object-position: center;
	flex: 0 1 auto;
}

@media (min-width: 992px) {
	.honar-my-story__media {
		min-height: 0;
		padding: clamp(10px, 1vw, 16px);
	}

	.honar-my-story__image {
		width: min(100%, 288px);
		max-width: 288px;
	}
}

@media (max-width: 991.98px) {
	.honar-my-story__media {
		padding: 18px;
	}

	.honar-my-story__image {
		width: min(100%, 450px);
		max-width: 450px;
		aspect-ratio: 1 / 1;
		border-radius: 34px;
	}
}

@media (max-width: 575.98px) {
	.honar-my-story__media {
		padding: 24px 12px 0;
	}

	.honar-my-story__image {
		width: 100%;
		max-width: 450px;
		aspect-ratio: 1 / 1;
	}
}

/* v0.9.8 — use the full 450 × 450 source image at a meaningful desktop size */
@media (min-width: 992px) {
	.honar-my-story__media {
		padding: clamp(10px, 1vw, 18px);
	}

	.honar-my-story__image {
		width: min(92%, 450px);
		max-width: 450px;
		height: auto;
		aspect-ratio: 1 / 1;
		object-fit: contain;
	}
}
