.page-11 {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	padding: clamp(1.2rem, 3vw, 2.2rem);
	gap: 1rem;
}

.page-11-header h2 {
	margin: 0;
	font-size: clamp(1.4rem, 3vw, 2.2rem);
	letter-spacing: 0.02em;
}

.page-11-content {
	flex: 1;
	min-height: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(0.8rem, 2vw, 1.2rem);
}

.chart-placeholder,
.conclusion-placeholder {
	background: rgba(255, 255, 255, 0.56);
	border: 1px dashed rgba(31, 31, 31, 0.28);
	border-radius: 0.7rem;
	padding: 1rem;
	height: 95%;
}

.chart-placeholder {
	display: grid;
	place-items: center;
}

.chart-placeholder p {
	margin: 0;
	font-size: 1rem;
	letter-spacing: 0.04em;
	opacity: 0.8;
}

.conclusion-placeholder h3 {
	margin: 0 0 0.8rem;
	font-size: 1.15rem;
}

.conclusion-placeholder p {
	margin: 0;
	line-height: 1.6;
	opacity: 0.88;
}

@media (max-width: 768px) {
	.page-11-content {
		grid-template-columns: 1fr;
	}
}