.blog-stream-name {
	text-align: center;
}

.blog-stream-posts {
	padding: 2rem 0;
}

.post-item {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1rem;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,.125);
	border-radius: 1rem;	
	background: #fff;
	text-decoration: none !important;
	transition: all 0.2s ease-in-out;
}	

.post-item:hover {
	box-shadow: 0 .25rem .5rem rgba(0,0,0,.15);
}

.post-item .item-image  {
	width: 50px;
	height: 50px;
	border: 0;
	transition: all 0.2s ease-in-out;
	object-fit: contain;
	margin-right: 1.5rem;
}

@media (min-width: 768px) {
    .post-item .item-image  {
        width: 75px;
        height: 75px;
    }
}

.post-item .item-date {
	display: none;
}

.post-item .item-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.15;
}

/* Pagination */

.blog-pagination {
	display: none;
}