.post-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.post-wrapper .post-column {
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* OVERRIDE */
.post-wrapper article {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-bottom: 15px;
	justify-content: space-between;
}

.post-wrapper article.headline {
	flex-direction: column !important;
}

.post-wrapper article .post-thumbnail span {
	position: absolute;
	background-color: black;
	color: white;
	max-width: 100%;
	padding: 3px 10px;
	text-align: center;
	bottom: 0;
	left: 0;
	font-size: .8em;
	text-transform: uppercase;
	display: none;
}

.post-wrapper article.headline .post-thumbnail span {
	display: inline-block;
}

.post-wrapper article .post-thumbnail { flex: 0 0 40%; }
.post-wrapper article .post-content {
	flex-direction: row;
	flex: 0 0 56%;
}

@media screen and (min-width: 991px) {
	.post-wrapper .post-column {
		flex: 0 0 28%;
		align-content: flex-start;
	    margin-left: 0;
	    margin-right: 7%;
	}
	.post-wrapper .post-column:first-child { flex: 0 0 30% }

	.post-wrapper article p {
		font-size: .8em;
		margin-bottom: 0;
		display: none !important;
	}
	.post-wrapper article.headline { flex: 0 0 39%; flex-direction: column; }
	.post-wrapper article.headline p { font-size: .8em; display: block !important; }

	.post-wrapper article {
		justify-content: space-between;
	}

	/*.post-wrapper article .post-thumbnail { flex: 0 0 40%; }
	.post-wrapper article .post-content {
		flex-direction: row;
		flex: 0 0 56%;
	}*/
}