/* Comments
--------------------------------------------- */

.comment-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.comment-list > .comment {
	border: 1px solid #000;
	padding: 1rem;
	margin-bottom: 1.5rem;
	list-style: none;
    border-radius: 1rem;
}

.comment-list .children {
	margin: 1rem 0 0 3.5rem;
	padding-left: 1rem;
	list-style: none;
	border-left: 2px solid #ddd;
}

.comment-list .children .comment {
	border: 0;
	padding: 1rem 0 0;
	margin: 1rem 0 0;
}

.comment-list .comment-meta {
	display: grid;
	grid-template-columns: 64px 1fr;
	grid-template-rows: auto auto;
	column-gap: 0.75rem;
	align-items: start;
	margin-bottom: 1rem;
}

.comment-list .comment-author {
	display: contents;
}

.comment-list .comment-author .avatar {
	grid-column: 1;
	grid-row: 1 / 3;
	width: 64px;
	height: 64px;
}

.comment-list .comment-author .fn {
	grid-column: 2;
	grid-row: 1;
	display: block;
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.2;
}

.comment-list .comment-author .says {
	display: none;
}

.comment-list .comment-metadata {
	grid-column: 2;
	grid-row: 2;
	margin-top: 0.15rem;
	font-size: 0.95rem;
	line-height: 1.2;
}

.comment-list .comment-metadata a {
	text-decoration: none;
}

.comment-list,
.comment-list a,
.comment-list .fn,
.comment-list .comment-content,
.comment-list .comment-content p,
.comment-list .reply a,
.comment-list .comment-metadata a {
	color: #000 !important;
}