/* Резюмка — конструктор заявлений */
.rzd { margin: 1.6em 0; --rzd-line: #dfe5e2; --rzd-accent: #157347; }

/* Выбор документа */
.rzd__pick {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 14px;
}
.rzd__card {
	position: relative;
	display: grid;
	gap: 5px;
	text-align: left;
	font: inherit;
	padding: 18px 20px;
	border: 1px solid var(--rzd-line);
	border-radius: 14px;
	background: transparent;
	cursor: pointer;
	transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.rzd__card:hover {
	transform: translateY(-3px);
	border-color: var(--rzd-accent);
	box-shadow: 0 16px 32px -22px rgba(24, 36, 32, .5);
}
.rzd__card b { font-size: 1.04rem; line-height: 1.3; }
.rzd__card span { font-size: .89rem; line-height: 1.5; opacity: .72; }
.rzd__card--paid { border-style: dashed; }
.rzd__mark {
	position: absolute;
	top: 14px;
	right: 16px;
	font-style: normal;
	color: var(--rzd-accent);
}

/* Рабочая область */
.rzd__work {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 28px;
	align-items: start;
}
@media (max-width: 900px) { .rzd__work { grid-template-columns: 1fr; } }

.rzd__back {
	font: inherit;
	font-size: .9rem;
	font-weight: 600;
	background: none;
	border: 0;
	padding: 0 0 10px;
	color: var(--rzd-accent);
	cursor: pointer;
}
.rzd__title { margin: 0 0 12px; font-size: 1.3rem; }

.rzd__paid-note {
	margin: 0 0 14px;
	padding: 12px 15px;
	border: 1px dashed var(--rzd-accent);
	border-radius: 10px;
	font-size: .9rem;
	line-height: 1.55;
}

.rzd__field { display: grid; gap: 5px; margin: 0 0 14px; }
.rzd__field label { font-size: .88rem; font-weight: 600; }
.rzd__field input,
.rzd__field textarea {
	width: 100%;
	font: inherit;
	padding: 10px 13px;
	border: 1px solid var(--rzd-line);
	border-radius: 9px;
	background: transparent;
	color: inherit;
}
.rzd__field input:focus,
.rzd__field textarea:focus {
	outline: none;
	border-color: var(--rzd-accent);
	box-shadow: 0 0 0 3px rgba(99, 91, 255, .13);
}
.rzd__hint-inline { font-size: .82rem; opacity: .65; line-height: 1.45; }
.rzd__hint {
	margin: 16px 0 0;
	padding: 12px 15px;
	border-left: 3px solid var(--rzd-accent);
	border-radius: 0 10px 10px 0;
	background: rgba(99, 91, 255, .06);
	font-size: .89rem;
	line-height: 1.55;
}
.rzd__hint a { color: var(--rzd-accent); font-weight: 600; }

/* Лист */
.rzd__preview { position: sticky; top: 86px; }
@media (max-width: 900px) { .rzd__preview { position: static; } }
.rzd__preview-label {
	display: block;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: .55;
	margin-bottom: 8px;
}
.rzd__sheet {
	padding: 34px 32px;
	border: 1px solid var(--rzd-line);
	border-radius: 6px;
	background: #fff;
	color: #182420;
	font-family: "Times New Roman", Georgia, serif;
	font-size: 1rem;
	line-height: 1.65;
	min-height: 320px;
	box-shadow: 0 18px 40px -28px rgba(24, 36, 32, .55);
}
.rzd__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

@media print {
	body * { visibility: hidden; }
	.rzd__sheet, .rzd__sheet * { visibility: visible; }
	.rzd__sheet {
		position: absolute;
		left: 0; top: 0;
		width: 100%;
		border: 0;
		box-shadow: none;
		padding: 0;
	}
}
