/* Juniper Blog Grid Temp */


/* Layout */
.juniper-blog-grid .content {
	width: 70%;
}

.juniper-blog-loop-grid {
	display: grid;
	grid-auto-flow: row;
	grid-template-columns: 47% 47%;
	grid-column-gap: 5%;
}

.juniper-blog-grid .archive-pagination {
	grid-column: 1/3;
}


/* Featured Image */
.juniper-blog-grid .image-featured img {
	max-height: 400px;
	object-fit: cover;
}

/* Sidebar */
.juniper-blog-grid .sidebar-primary {
	padding: 3%;
}

/* Posts */
.juniper-blog-grid article {
	padding: 8%;
}

.juniper-blog-grid h2.entry-title {
	margin-top: 5%;
	font-family: 'Athene';
}

.juniper-blog-grid .entry-image-link img {
	height: 400px;
	object-fit: cover;
}

.juniper-blog-grid .entry-content p:first-of-type {
	max-height: 8rem;
	overflow: hidden;
}

/* Footer */
.juniper-blog-grid .juniper-footer {
	margin-top: 0%;
}

@media only screen and (max-width: 800px) {
	.juniper-blog-grid .content {
		width: 100%;
	}
	
	.juniper-blog-grid .entry-image-link img {
		height: 400px;
	}
}

@media only screen and (max-width: 480px) {
	.juniper-blog-loop-grid {
		display: block;
	}
	
	.juniper-blog-grid .sidebar-primary {
		margin-bottom: 6%;
	}
}