/* Stuart Step Cards Widget */

.ssc-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ── Card ── */
.ssc-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background-color: #f5f5f8;
	border-radius: 12px;
	padding: 28px 28px 28px 24px;
	box-sizing: border-box;
	transition: background-color 300ms ease, border-color 300ms ease, border-width 300ms ease, border-style 300ms ease, box-shadow 300ms ease;
}

/* ── Number ── */
.ssc-number {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	color: #c8c8d4;
	flex-shrink: 0;
	min-width: 52px;
	text-align: center;
	padding-top: 2px;
	transition: color 300ms ease;
}

/* ── Content ── */
.ssc-content {
	flex: 1;
	min-width: 0;
}

.ssc-title {
	margin: 0 0 8px;
	padding: 0;
	font-size: 17px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.3;
}

.ssc-description {
	margin: 0;
	padding: 0;
	font-size: 15px;
	color: #555555;
	line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.ssc-card {
		padding: 20px 18px;
		gap: 14px;
	}

	.ssc-number {
		font-size: 28px;
		min-width: 38px;
	}

	.ssc-title {
		font-size: 15px;
		margin-bottom: 6px;
	}

	.ssc-description {
		font-size: 14px;
	}
}
