.step-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 19.5rem;
	min-width: 19.5rem;
	height: 100%;
	padding: 1.5rem;
	border-radius: 1.25rem;
	background-color: var(--color-orange-orange-200);
}

.step-card .step-card__head {
	gap: 0.75rem;
	width: 100%;
	min-width: 0;
}

.step-card .step-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 0.5rem 1rem;
	border-radius: var(--layout-radius-m);
	background-color: var(--color-base-white);
	color: var(--color-orange-orange-800);
	font-family: 'Manrope', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: normal;
	white-space: nowrap;
}

.step-card .step-card__title {
	margin: 0;
	color: var(--color-gray-gray-900);
	word-break: break-word;
}

.step-card .step-card__text {
	margin: 0;
	color: var(--color-gray-gray-700);
	font-weight: 500;
	line-height: 1.3;
	word-break: break-word;
}

@media screen and (min-width: 64rem) {
	.step-card {
		width: 32.5rem;
		min-width: 32.5rem;
		gap: 1.5rem;
		padding: 2rem;
		border-radius: var(--layout-radius-xxl);
	}

	.step-card .step-card__head {
		gap: 1.5rem;
	}

	.step-card .step-card__badge {
		padding: 0.75rem 1.5rem;
		font-size: 1rem;
	}

	.step-card .step-card__text {
		font-weight: 400;
		line-height: 1.4;
	}
}
