/* instagram feed holder */
div.instagramFeed {
	display:-ms-grid;
	display:grid;
	grid-auto-rows:0;/* set height to 0 for autogenerated grid rows */
	overflow-y:hidden;/* hide grid items that overflow */
}
/* instagram feed item and media holder */
div.instagramFeed > div {
	position:relative;
	overflow:hidden;
	width:100%;
	padding-bottom:100%;
	height:0;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover
}
/* instagram feed item inner holders:
	* clicker
	* title
	* dark transparent overlay on hover
*/
div.instagramFeed > div > a
,div.instagramFeed > div > div
{
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	width:100%;
	height:100%;
	font-size:0;
	text-decoration:none;
}
div.instagramFeed > div > a {
	display:block;
	z-index:2;
}
div.instagramFeed > div > div {
	display:flex;
	justify-content:center;
	align-items:center;
	opacity:0;
	transition:opacity 250ms ease-out;
	background-color:rgba(0,0,0,0.7);
	z-index:1;
}
div.instagramFeed > div:hover > div {
	opacity:1 !important;
}
div.instagramFeed > div > div > p {
	margin:0 !important;
	padding:10px !important;
}

