.social-feed .item {
	padding: 3px 5px;
}

.social-feed .item-image {
	display: inline-block;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 0px;
	padding: 90% 0px 0px 0px;
	position: relative;
}

.social-feed .image-overlay {
	display: inline-block;
	position: absolute;
	bottom: 0px;
	right: 0px;
	padding: 0px 7px;
	font-size: 30px;
	color: white;
}

.social-feed .blog-thumbnail {
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: solid 1px gray;
	color: gray;
	padding: 10px;
	overflow: hidden;
	text-decoration: none;
}

.social-feed .blog-thumbnail:hover {
	color: black;
}

.social-feed .blog-thumbnail .title {
	font-size: 16px;
}

.social-feed .blog-thumbnail .body {
	font-size: 12px;
	white-space: pre-wrap;
}

.social-feed .blog-thumbnail .thumbnail-mask {
	display: inline-block;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 40%;
	background-image: linear-gradient(rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 1) 100%);
	z-index: 100;
}

@media only screen and (max-width: 600px) {
	.social-feed .item {
		display: block;
		margin: 5px 0px;
	}
	.social-feed .item-image {
		display: block;
		height: 90vw;
		width: 100%;
	}
}