
.article a{
	position: relative;
	display: flex;
	margin:0px;
	padding:40px 15px;
}
.article:hover{
	cursor: pointer;
}
.article .text {
	padding-left: 4%;
	flex-basis: 58%;
}
.thumbnail{
	display: block;
	overflow: hidden;
	flex-basis: 38%;
}
.thumbnail img{
	position: relative;
	width: inherit;
	object-fit: cover;
	transition-duration: 0.35s;
	width: 100%;
	/*transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;*/
}
.article:hover .thumbnail img{
	/*transform: translate(-50%, -50%) scale(1.05);*/
	transition-duration: 0.35s;
}
.article a{
	color: #000;
	text-decoration: none;
}
.title{
	font-size: 1.55rem;
	font-weight: 700;
	word-break: break-all;
	text-align: left;
	margin-top: -0.7rem;
}
.overview{
	width: 100%;
	height: auto;
	font-size: 1.35rem;
	font-weight: 300;
	word-break: break-all;
	text-align: left;
	color: #444
}

.date{
	display: block;
	font-size: 1.25rem;
	text-align: right;
	margin-bottom: 0px;
	bottom: 0px;
	color:#999;
	margin: 16px 0px;
}
.category{
    position: absolute;
    z-index: 1;
	font-size: 2.6rem;
	display: block;
	margin: 0px;
    top: 1.0rem;
	color:#9a9a9a;
}
.footer{
	margin-top : 16px;
	border-top: solid 1px var(--border-color);
	font-size: 1.2rem;
}

@media screen and (max-width:782px){
	h1{
		margin: 0px 0px;
		width: 100%;
		font-size: 2.4rem;
		
	}
	.main{
		width: 98%;
	}
	.article{
		flex-basis: 100%;
		border-left: solid 0px #000000;
		border-right: solid 0px #000000;
	}
	.article a{
		display: flex;
	}
	.thumbnail{
    	width: 100%;
    	height: inherit;

	}
	
	.article{
		flex-basis: 80%;
		height: 100%;
		margin: 0px;
	}
	.thumbnail img{
	}
	.overview{
		display: none;
	}
	
	.category{
		position: absolute;
		z-index: 1;
		font-size: 1.6rem;
		top: 2.1rem;
	}
}