body {
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
	font-size: 62.5%;
}

a {
	text-decoration: none;
	color: #1a1a1a;
}

.article-click-box {
	height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
}

.article-preview {
	/* overflow-y: hidden; */
	background-color: #fff;
	position: relative;
	word-break: break-word;
	border: 1px solid rgba(0,0,0,.07);
	border-radius: 4px;
	max-width: 400px;
	margin: auto;
	min-height: 104px;
}

.article-thumbnail {
	width: 42%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-color: #ccc;
}
.article-thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.article-preview-text {
	margin-left: 42%;
	padding: 10px;
	overflow-y: hidden;
}

.article-preview-title {
	font-weight: 500;
	margin: 0;
}

.article-excerpt {
	display: none;
	color: rgba(26,26,26,.6);
	font-size: 16px;
	line-height: 1.3;
}

@media screen and (min-width: 540px) {
	.article-preview {
		min-height: 140px;
		max-width: unset;
	}

	.article-thumbnail {
		max-width: 198px;
	}
	.article-preview-title {
		font-size: 18px;
	}
	.article-excerpt {
		display: block;
	}
}