.main-post-item {
    width: calc(50% - 8px);
}

.mp-image-container {
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
	position: relative;
}

.mp-img {
    height: 100%;
}

.post-cover-link {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.post-cover-link:hover {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.5) 100%);
}

.mp-title {
    font-weight: 900;
    font-size: 20px;
    line-height: 1.3;
	color: #000000;
}

.mp-title:hover {
	color: #4cadc9;
}

.mp-desc-head {
    font-size: 12px;
	padding: 8px 0;
}

.mp-desc-head span {
    border-right: 1px solid #999999;
    padding-right: 7px;
    margin-right: 5px;
}

.mp-desc-head span:last-child {
    border-right: none;
}

@media (max-width: 360px) {
	.main-post-item {
   		width: 100%;
	}
	
	.main-post-item:first-child {
		margin-bottom: 32px;
	}
	
	.mp-image-container {
		height: 200px;
	}
}

