.aurora-gallery-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
}

.photo-thumb-wrapper {
	position: relative;
	width: 25%;
	mix-blend-mode: multiply;
	padding: 5px;
}

.photo-thumb {
	width: 100%;
	background-size: cover;
	background-position: center;
	aspect-ratio: 4 / 3;
	position: relative;
	border-radius: 3px;
}

.photo-thumb::before {
	content: '\f00e';
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Font Awesome 5 Pro';
	color: #fff;
	font-size: 1.5rem;
	inset: 0;
	position: absolute;
	background: rgba(0,0,0,0.3);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	opacity:0;
	pointer-events:none;
	transition:all 0.3s;
	z-index:5;
}

.photo-thumb-wrapper:hover .photo-thumb::before{
	opacity:1;
}

a.biglink{
	position:absolute;
	inset:0;
	z-index:10;
}

@media screen and (max-width:800px){
	.photo-thumb-wrapper{
		width:50%;
	}
}

.aurora-gallery-grid,
.aurora-std-gallery{
	margin:3rem 0;
}
