/* Numbered list — Figma services (Who 133:107) */

.qnd-numbered-list {
	width: 494px;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	background: #fff;
	overflow: hidden;
	box-sizing: border-box;
}

.qnd-numbered-list__row {
	display: flex;
	gap: var(--qnd-space-6);
	align-items: flex-start;
	padding: 10px 48px 0;
	height: 64px;
	box-sizing: border-box;
	background: #fff;
}

.qnd-numbered-list__num {
	margin: 0;
	width: 40px;
	flex-shrink: 0;
	font-family: var(--qnd-font-sans);
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0;
	color: var(--qnd-black-900);
}

.qnd-numbered-list__title {
	margin: 0;
	font-family: var(--qnd-font-serif);
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	letter-spacing: 0;
	color: var(--qnd-black-900);
	overflow-wrap: break-word;
	white-space: nowrap;
}

.qnd-numbered-list__divider {
	height: 1px;
	flex-shrink: 0;
	background: var(--qnd-darkblue-50);
}

@media (max-width: 768px) {
	.qnd-numbered-list__row {
		padding: 10px 20px 0;
		gap: 16px;
		height: auto;
		min-height: 56px;
		padding-bottom: 10px;
	}

	.qnd-numbered-list__title {
		font-size: 20px;
		line-height: 28px;
		white-space: normal;
	}
}
