.blog-author {
	font-size: 1.3em;
	padding: 5px;
}

.blog-categories {
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	display: table;
	font-size: 1.2em;
	margin-bottom: 0;
	padding-bottom: 5px;
	padding-top: 5px;
	vertical-align: middle;
	width: 100%;
}

.blog-categories-not-approved {
	background-color: #e4c3c8;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	display: table;
	font-size: 1.2em;
	margin-bottom: 0;
	padding-bottom: 5px;
	padding-top: 5px;
	vertical-align: middle;
	width: 100%;
}

.blog-categories > span {
	display: table-cell;
	vertical-align: bottom;
}

.blog-categories > span > a {
	color: #242f2f;
}

.blog-container {
	align-content: flex-start;
	align-items: flex-start;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	margin-bottom: 20px;
}

/* Small screens */
@media all and (max-width: 500px) {
	.blog-container {
		/* On small screens, we are no longer using row direction but column */
		flex-direction: column;
	}
}

.blog-panel {
	margin-bottom: 20px;
	padding: 0px;
	text-align: center;
	width: 350px;
}

.blog-panel-not-approved {
	background-color: #ecd5d8;
	overflow: hidden;
	padding: 0px;
	text-align: center;
	width: 350px;
}

.blog-image {
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	height: 225px;
	margin: 0px;
	padding: inherit;
	width: inherit;
	overflow: hidden;
}

.blog-title {
	color: #4f5858;
	display: block;
	font-size: 2em;
	padding: 5px;
}

/* Float Shadow
 *
 * Courtesty of Hover.css
 * github.com/IanLunn/Hover
 */
.hvr-float-shadow {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}
.hvr-float-shadow:before {
	pointer-events: none;
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 0;
	background-image: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform, opacity;
	transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	/* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
	opacity: 1;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
	/* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}
