/* vim: fileencoding=utf-8 ts=4 shiftwidth=4
 */

body {
	margin: 0;
	padding: 0;
}

article {
	max-width: 450px;
	max-height: 167px;
	border: solid 1px;
	padding: 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}

.image {
	width: 160px;
	height: 160px;
	margin: 0;
	padding: 0;
}
.image a {
	display: grid;
	width: 100%;
	height: 100%;
	place-content: center;
	place-items: center;
}
img {
	max-width: 160px;
	max-height: 160px;
	padding: 0;
}

.info {
	width: 70%;
	height: 160px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
}
.title {
	width: 100%;
	height: 75%;
	overflow: hidden;
	display: -webkit-box;
	line-height: 1.2;
	height: 6rem;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}
.detail, .links {
	margin: 0 0 0 auto;
	text-align: right;
}
