/**
 * Блок reb/service-report (блок 06 страницы услуги).
 * Слева нумерованный состав отчета, справа зеленая карточка примера.
 */

.reb-service-report {
	padding: 48px 0;
	background: #fff;
}

.reb-service-report__inner {
	display: flex;
	align-items: flex-start;
	gap: 32px;
}

.reb-service-report__main {
	flex: 1;
	min-width: 0;
}

.reb-service-report__title {
	margin: 0 0 22px;
	font-size: 26px;
}

.reb-service-report__list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: reb-report;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.reb-service-report__item {
	counter-increment: reb-report;
	position: relative;
	padding: 18px 20px 18px 72px;
	background: var(--reb-bg);
	border: 1px solid var(--reb-border);
}

.reb-service-report__item::before {
	content: counter(reb-report, decimal-leading-zero);
	position: absolute;
	left: 20px;
	top: 17px;
	font-family: var(--reb-font-mono);
	font-size: 18px;
	font-weight: 500;
	color: var(--reb-accent);
}

.reb-service-report__item-title {
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
}

.reb-service-report__item-text {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--reb-text-muted);
}

/* Карточка примера отчета. */
.reb-service-report__sample {
	flex: 0 0 300px;
	width: 300px;
	padding: 24px;
	background: linear-gradient(140deg, var(--reb-text) 0%, var(--reb-plate) 100%);
	color: #fff;
}

.reb-service-report__sample-title {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.3;
}

.reb-service-report__sample-text {
	margin: 8px 0 18px;
	font-size: 13px;
	line-height: 1.5;
	color: #DCEFE3;
}

.reb-service-report__sample-btn {
	width: 100%;
}

/* Адаптив. */
@media (max-width: 1024px) {
	.reb-service-report__inner {
		flex-direction: column;
	}

	.reb-service-report__sample {
		flex: 1 1 100%;
		width: 100%;
		max-width: 420px;
	}
}

@media (max-width: 768px) {
	.reb-service-report {
		padding: 36px 0;
	}

	.reb-service-report__title {
		font-size: 21px;
	}

	.reb-service-report__item {
		padding-left: 60px;
	}
}
