#note-canvas {
	width: 100%;
	height: 256px;
	border: 1px solid white;
}

.note {
	max-width: 42rem;
	padding: 1.5rem 1.75rem;
	background: #fffdf7;
	border: 1px solid #e6e0d4;
	border-radius: 6px;
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.04),
		0 8px 24px rgba(0, 0, 0, 0.06);
	font-family: system-ui, serif;
	line-height: 1.6;
	position: relative;
}

.note::before {
	content: "";
	position: absolute;
	top: 0;
	left: 1rem;
	width: 2px;
	height: 100%;
	background: #f0c9c9;
	opacity: 0.6;
}

.note p {
	color: black;
}

.note h3 {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: black;
}

.note blockquote {
	margin: 0 0 1rem;
	padding-left: 1rem;
	border-left: 3px solid #d6cfc2;
	color: #333;
	font-style: italic;
}

.note small {
	display: block;
	margin-bottom: 0.75rem;
	color: #666;
	font-size: 0.85rem;
}

.note small a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.note .comment {
	margin: 0;
	font-size: 0.9rem;
	color: #555;
}
