.post-card {
	display: block;
	max-width: 410px;
	height: 100%;
	margin: 0 auto;
	padding: 0 15px 15px 24px;
	clip-path: polygon(calc(100% - 45px) 0, 100% 35px, 100% 100%, 0 100%, 0 0);
}

.post-card--micro-title {
	font-size: 0.813rem;
	text-transform: uppercase;
	font-family: degular, sans-serif;
	font-weight: 500;
	letter-spacing: .06em;
	margin-bottom: 8px;	
}

.has-theme-white-background-color .post-card--micro-title {
	color: var(--theme-green);
}

.post-card--title {
	margin-bottom: 1rem;
}

.post-card--image {
	position: relative;
	margin-right: -15px;
	margin-bottom: 15px;
	clip-path: polygon(100% 0, 100% 100%, 45px 100%, 0 calc(100% - 35px), 0 0);
}

.post-card--image:before {
	content: "";
	display: block;
	padding-bottom: 56%;
}

.post-card--image img {
	position: absolute;
	top: 0;
	left: 0;
}

@media (min-width: 992px) {
	.post-card--micro-title {
		font-size: 0.875rem;
		margin-bottom: 16px;	
	}
	
	.post-card--title {
		line-height: 1;
	}
	
	.post-card--image {
		margin-bottom: 20px;
	}	
}