body {
	margin: 20px;
	font-family: "Helvetica Neue";
}

img {
	width: 100%;
	border-radius: 5px;
}

a:link, a:visited, a:active, a:hover { text-decoration: none; }

.container {
	max-width:800px;
	margin: 0 auto;
}

.card {
/*	text-align: center; */
	border-radius: 5px;
	padding: 20px;
  	border: 1px solid rgb(230,230,230);
}

.card:hover {
	background: rgb(250,250,250);
	border: 1px solid rgb(210,210,210);
}

.title {
	color: rgb(64, 64, 64);
}

.subtitle {
	color: rgb(140, 140, 140);
	font-size: 16px;
}

.desc {
	position: relative;
}

.read-button {
	position: absolute;
	right: 0;
	top: 22px;
	transform: translateY(-50%);
	background: rgb(0, 255, 0, 0.3);
	color: rgb(64, 64, 64);
	border: 1px solid rgb(210,210,210);
	padding: 12px 20px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
}

.read-button:hover {
	background: rgb(0, 255, 0);
}

.explainer {
	margin: 2px 0px;
	font-size: 12px;
	text-align:right;
}

.explainer a {
	color: rgb(160, 160, 160);
}

.explainer a:hover {
	text-decoration: underline;
}

.related-posts {
	padding: 20px;
}

.related-posts h3 {
	color: rgb(64, 64, 64);
	margin-bottom: 15px;
	font-size: 20px;
}

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

.related-list li {
	margin-bottom: 4px;
}

.related-list a {
	color: rgb(140, 140, 140);
	text-decoration: none;
	font-size: 16px;
	line-height: 1.4;
}

.related-list a:hover {
	text-decoration: underline;
}