/*
 * PflichtRadar output documents section styles.
 */

.output-section {
	overflow: hidden;
	background: #f4f7fb;
}

.pr-output-head {
	max-width: 760px;
	margin: 0 auto clamp(2.5rem, 5vw, 3.8rem);
	text-align: center;
}

.pr-output-eyebrow .elementor-heading-title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	color: #145bd7;
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.pr-output-eyebrow .elementor-heading-title::before {
	width: 14px;
	height: 2px;
	background: #19c4d6;
	content: "";
}

.pr-output-title .elementor-heading-title {
	margin: 0;
	color: #0b1f3a !important;
	font-family: "Poppins", sans-serif;
	font-size: clamp(2rem, 3.4vw, 2.85rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.18;
}

.pr-output-lead p {
	margin: 0.85rem auto 0;
	color: #4b6180;
	font-size: 1.05rem;
	line-height: 1.6;
}

.output-grid-layered {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.doc-sheet {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: space-between;
	padding: 2.2rem;
	border: 1px solid #dce5f0;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 10px 30px -5px rgba(11, 31, 58, 0.08), 0 2px 6px -1px rgba(11, 31, 58, 0.04);
}

.doc-sheet.offset-right {
	transform: translateY(16px);
}

.doc-sheet-tagbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	margin-bottom: 1.2rem;
}

.doc-status-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 0.7rem;
	border: 1px solid rgba(25, 196, 214, 0.4);
	border-radius: 6px;
	background: rgba(25, 196, 214, 0.12);
	color: #0b7f8c;
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.doc-status-tag::before {
	color: #10b981;
	content: "✓";
	font-weight: 700;
}

.doc-meta-right {
	color: #4b6180;
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.72rem;
	font-weight: 500;
	white-space: nowrap;
}

.doc-sheet h3,
.doc-sheet .elementor-heading-title {
	margin: 0 0 0.8rem;
	color: #0b1f3a !important;
	font-family: "Poppins", sans-serif;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.25;
}

.doc-feature-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 1.1rem 0 1.8rem;
	padding: 0;
	list-style: none;
}

.doc-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	color: #4b6180;
	font-size: 0.93rem;
	line-height: 1.5;
}

.doc-feature-list li::before {
	flex: none;
	margin-top: 0.05rem;
	color: #10b981;
	content: "✓";
	font-weight: 700;
}

.doc-blueprint {
	position: relative;
	padding: 1.3rem 1.4rem;
	border: 1px solid #dce5f0;
	border-radius: 8px;
	background: #f8fafd;
	box-shadow: inset 0 2px 6px rgba(11, 31, 58, 0.03);
	color: #0b1f3a;
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.76rem;
}

.doc-blueprint::before {
	position: absolute;
	top: 8px;
	right: 12px;
	color: #8fa6c8;
	content: "RECHTSTEXT-ENTWURF";
	font-size: 0.6rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.blueprint-sec-title {
	margin: 0.7rem 0 0.3rem;
	color: #145bd7;
	font-size: 0.78rem;
	font-weight: 600;
}

.blueprint-sec-title:first-child {
	margin-top: 0;
	padding-right: 7.5rem;
}

.blueprint-text-snippet {
	margin-bottom: 0.4rem;
	padding: 0.45rem 0.65rem;
	border: 1px solid #dce5f0;
	border-radius: 4px;
	background: #ffffff;
	color: #4b6180;
	font-family: "Poppins", sans-serif;
	font-size: 0.72rem;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.output-grid-layered {
		grid-template-columns: 1fr;
	}

	.doc-sheet.offset-right {
		transform: none;
	}
}

@media (max-width: 640px) {
	.doc-sheet {
		padding: 1.45rem;
	}

	.doc-sheet-tagbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.doc-meta-right {
		white-space: normal;
	}

	.blueprint-sec-title:first-child {
		padding-right: 0;
		padding-top: 1rem;
	}
}