#some-wrap {
	height: 14000px;
	overflow: visible;
	padding-bottom: 2rem;
	position: relative;
	transition: height .5s ease;
}
#some-wrap.truncated {
	height: 2000px;
	overflow: hidden;
}
#some-wrap .social-posts {
	margin: 0 auto 2rem;
	padding: 1rem;
	width: calc(100% - 2rem);
}
#some-wrap .social-posts li {
	background-color: #eee;
	border-radius: 5px;
	display: block;
	margin: 0 0 2%; /* Optional */
	padding: 1rem;
}
#some-wrap .social-posts li::before {
	display: none !important;
}
#some-wrap .social-posts li.hide {
	display: none !important;
}

@media all and (min-width: 800px) {
	#some-wrap .social-posts {
/* 
		align-content: space-between;
 */
		align-items: center;
		display: flex;
		flex-flow: column wrap;
		gap: 1rem;
		height: 14000px; 
		justify-content: top;
	}
	#some-wrap .social-posts li {
		width: calc(33% - 1rem);
	}
	#some-wrap .social-posts li:nth-child(3n+1) { order: 1; }
	#some-wrap .social-posts li:nth-child(3n+2) { order: 2; }
	#some-wrap .social-posts li:nth-child(3n)   { order: 3; }
}


#some-wrap .quote {
	border: 1px solid #999;
	border-radius: 4px;
	font-size: 90%;
	margin: 1rem 0;
	padding: 1rem;
}

#some-wrap .author {
	display: flex;
	font-size: 85%;
	margin: 1rem 0;
}
#some-wrap .author a {
	border-radius: 50%;
	height: 48px;
	margin-right: 1rem;
	width: 48px;
	display: block;
	overflow: hidden;
}

#some-wrap .more-or-less {
	background-color: rgb(234,234,234);
	background: linear-gradient(0deg, rgba(234,234,234,1) 0%, rgba(234,234,234,1) 30%, rgba(234,234,234,0) 100%);
	position: absolute;
	bottom: 0;
	padding: 1rem;
	width: 100%;
}
#some-wrap .more-or-less button {
	background-color: #c00;
	border: 0;
	border-radius: 4px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	display: block;
	margin: 1rem auto;
	padding: 1rem 1.5rem;
}

#some-wrap a.image img {
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}