/**
 * StepDecor Story Section — consumed by Story_Section::render().
 */

.sd-story {
	background: var(--sd-color-surface-dark);
	padding: 7rem 5%;
}

.sd-story__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.sd-story__left .sd-section-heading__eyebrow {
	color: var(--sd-color-accent);
}

.sd-story__title {
	color: #fff;
	margin-bottom: 1.2rem;
}

.sd-story__body {
	color: rgba(255, 255, 255, .6);
	font-size: .95rem;
	line-height: 1.9;
	margin: 1.4rem 0;
	font-weight: 300;
}

.sd-story__values {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	margin-top: 2rem;
}

.sd-story__value {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.sd-story__value-icon {
	width: 40px;
	height: 40px;
	border-radius: 3px;
	background: var(--sd-gradient-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.1rem;
	color: #fff;
}

.sd-story__value h4 {
	color: #fff;
	font-size: .88rem;
	font-weight: 600;
	margin-bottom: .2rem;
}

.sd-story__value p {
	color: rgba(255, 255, 255, .45);
	font-size: .8rem;
	line-height: 1.65;
}

.sd-story__right {
	position: relative;
}

.sd-story__img-main {
	width: 100%;
	height: auto !important;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 6px;
}

.sd-story__img-floating {
	position: absolute;
	bottom: -2rem;
	left: -2.5rem;
	width: 52%;
	height: auto !important;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 4px;
	border: 4px solid var(--sd-color-surface-dark);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.sd-story__badge {
	position: absolute;
	top: 1.5rem;
	right: -1.5rem;
	background: var(--sd-color-accent);
	color: #fff;
	padding: 1.2rem 1.5rem;
	border-radius: 4px;
	text-align: center;
	font-weight: 700;
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	line-height: 1.4;
	box-shadow: 0 12px 40px rgba(245, 130, 32, .4);
	z-index: 1;
}

.sd-story__badge big {
	display: block;
	font-family: var(--sd-font-heading);
	font-size: 2.6rem;
	letter-spacing: 0;
	font-weight: 700;
}

@media (max-width: 1100px) {
	.sd-story__grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.sd-story__img-floating,
	.sd-story__badge {
		display: none;
	}
	.sd-story {
		padding: 5rem 5%;
	}
}
