ol.story-dir {
	padding: 0;
	margin: 0;
	list-style-type: none;
	
}

.story-dir > li,
.story-box {
	width: 35rem;
	border: 0.05em solid var(--global_color-foreground);
	padding: 1rem;
	text-align: center;
	.title {
		text-transform: uppercase;
		font-size: 1.5em;
		color: var(--global_color-foreground);
		font-weight: bold;
		text-decoration: none;
		&:hover {
			color: var(--global_color-main);
			text-decoration: underline;
		}
	}
	p {
		margin: 0;
		& + p {
			margin-top: 0.5em;
		}
	}
	.info {
		font-family: var(--font-serif-mono);
		font-size: 0.6em;
		line-height: 1.2;
		padding-top: 0.6rem;
		margin-top: 1em;
		font-style: italic;
		position: relative;
		&::before {
			content: '';
			position: absolute;
			border: dashed var(--global_color-foreground);
			border-width: 2px 0 0 0;
			width: 70%;
			left: 50%;
			transform: translateX(-50%);
			top: 0;
		}
		.tags {
			margin-bottom: 3px;
			span {
				text-decoration: underline;
			}
		} 
	}
}

.story-dir > li + li,
* + .story-box {
	margin-top: 0.5rem;
}