/* Park Space — stacked step cards (Figma: 664x280 r=16 pad 40/32, text 368, icon area 200) */
.ps-steps { padding: 4rem 0; }
.ps-steps-inner { display: flex; flex-direction: column; align-items: center; }
.ps-steps .ps-head { margin-bottom: 2.5rem; max-width: 51rem; }
.ps-steps-lead { padding: 0 0 0.5rem; }
.ps-steps-list { display: flex; flex-direction: column; gap: 1.5rem; width: 100%; max-width: 41.5rem; }
.ps-step {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 1.5rem;
	border-radius: var(--ps-radius);
	background-color: var(--ps-white);
}
.ps-step-body { display: flex; flex-direction: column; gap: 2rem; align-items: flex-start; flex: 1; max-width: 23rem; }
.ps-step-text { display: flex; flex-direction: column; gap: 0.5rem; }
.ps-step-icon { flex: none; width: 6rem; height: 6rem; display: flex; align-items: center; justify-content: center; }
.ps-step-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ps-steps-action { margin-top: 4rem; }
@media (min-width: 48rem) {
	.ps-step { padding: 2.5rem 2rem; }
	.ps-step-icon { width: 12.5rem; height: 12.5rem; }
	.ps-step-icon img { max-width: 6rem; max-height: 7.5rem; }
}
@media (min-width: 62rem) {
	.ps-steps { padding: 4rem 0; }
	.ps-steps .ps-head { margin-bottom: 4rem; }
}
