/*
* Layout
*/
.page-body {
	--wrap-padding: 1rem;
}

.main-wrap {
	max-width: unset;
}

.gallery {
	/*display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 1rem;
	align-content: center;
	width: 100%;
	max-height: 150svh;*/
	font-size: 0;
	margin: -0.5rem;
	margin-top: min(6rem, 13vw);
}

.photo {
	display: inline-block;
	padding: 0.5rem;
	/*flex-grow: 1;
	max-width: 33%;*/
}

.photo img {
	min-height: max(10rem, 32svh);
}

.photo__overlay {
	opacity: 0;
	background-color: hsl(0, 0%, 0%, 0.7);
	transition: opacity 0.4s;
}

.photo .grid-flow:hover .photo__overlay {
	opacity: 1;
}

.photo__name {
	translate: 0 1rem;
	max-width: 60%;
	opacity: 0;
	font-size: min(1rem, 3.5vw);
	font-weight: var(--fw-medium);
	letter-spacing: 0.3em;
	line-height: 1.5;
	text-transform: uppercase;
	transition: translate 0.4s, opacity 0.4s;
}

.photo .grid-flow:hover .photo__name {
	opacity: 1;
	translate: 0;
}

/*
* Responsive
*/
@media (min-width: 481px) {
	.gallery {
		columns: 2;
	}
}

@media (min-width: 1025px) {
	.gallery {
		columns: 3;
	}
}
