.wrapper {
	padding: 16px;
	min-height: 100dvh;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
}
@media (max-width: 600px) {
	.wrapper {
		grid-template-columns: 1fr;
	}
}
p {
	max-width: 40ch;
}
.self {
	margin-top: 20%;
	max-width: 30ch;
}
.signature {
	margin-top: .3lh;
	display: block;
	text-align: right;
}
.postlist {
	width: fit-content;
	list-style-type: none;
}
.postlist time {
	display: block;
	font-style: italic;
	margin-bottom: 12px;
}
.postlist li {
	display: flex;
	gap: 4px;
	--link-color: black;
}
.postlist .private {
	opacity: 0.4;
	& time {
		font-style: normal;
	}
}
.postlist a {
	max-width: 32ch;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: flex;
	gap: 4px;
	color: var(--link-color);
	text-decoration: none;
	& div {
		text-overflow: inherit;
		overflow: hidden;
	}
}
.postlist a:hover {
	--link-color: blue;
	filter: drop-shadow(0 0 4px rgba(145, 92, 182, 0.3)) drop-shadow(
		0 0 12px rgba(145, 92, 182, 0.2)
	) drop-shadow(0 8px 30px rgba(145, 92, 182, 0.1));
	transition: 0.2s;
}

.post-spine {
	position: relative;
	width: 0.55ch;
	flex-shrink: 0;
	/* values guesstimated based off of times new roman */
	margin-top: 0.11lh;
	margin-bottom: 0.25lh;

	border: solid 1px var(--link-color);
	border-right: none;
}
.long-spine::before {
	content: "";
	background: white;
	position: absolute;
	bottom: 0;
	height: 20%;
	left: -1px;
	border-left: 1px dashed var(--link-color);
}
