.csp-jung-commerce {
	margin: 28px 0;
	padding: clamp(22px, 4vw, 38px);
	border: 1px solid #e4e7ec;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 20px 55px rgba(16, 24, 40, .07);
	color: #101828;
}

.csp-jung-commerce__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 22px;
	margin-bottom: 22px;
}

.csp-jung-commerce__heading span,
.csp-jung-product__body > span {
	color: #520f7d;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .12em;
}

.csp-jung-commerce__heading h2 {
	margin: 5px 0 0;
	font-size: clamp(25px, 3.2vw, 38px);
	letter-spacing: -.04em;
}

.csp-jung-commerce__heading p {
	max-width: 320px;
	margin: 0;
	color: #667085;
	font-size: 13px;
}

.csp-jung-commerce__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 15px;
}

.csp-jung-product {
	overflow: hidden;
	border: 1px solid #eaecf0;
	border-radius: 18px;
	background: #fff;
	transition: transform .18s ease, box-shadow .18s ease;
}

.csp-jung-product:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 34px rgba(16, 24, 40, .1);
}

.csp-jung-product img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.csp-jung-product__body {
	padding: 18px;
}

.csp-jung-product h3 {
	margin: 6px 0 12px;
	font-size: 18px;
	line-height: 1.25;
}

.csp-jung-product__price {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 850;
}

.csp-jung-product__cta {
	display: inline-flex;
	color: #520f7d;
	font-weight: 850;
	text-decoration: none;
}

.csp-jung-commerce-message {
	padding: 18px;
	border-radius: 14px;
	background: #f8f5fa;
	color: #520f7d;
}

@media (max-width: 680px) {
	.csp-jung-commerce__heading {
		display: block;
	}

	.csp-jung-commerce__heading p {
		margin-top: 9px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.csp-jung-product {
		transition: none;
	}
}
