.lsp-template-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	box-sizing: border-box;
}

.lsp-template-grid {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
	gap: 32px;
	align-items: start;
}

.lsp-template-header {
	margin-bottom: 24px;
}

.lsp-template-title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
}

.lsp-template-main,
.lsp-template-sidebar {
	min-width: 0;
}

.lsp-template-sidebar {
	background: #f7f7f7;
	padding: 24px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
}

.lsp-template-sidebar .widget + .widget {
	margin-top: 24px;
}

.lsp-template-sidebar .widget-title {
	margin: 0 0 12px;
	font-size: 1.1rem;
}

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