.stadium-gallery .e-gallery-grid {
	display: flex !important;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: calc(100% - var(--stadium-esagono-offset) / 2 );
	margin: auto;
}
.stadium-gallery .e-gallery-item {
	--gap-width-spare: 
		calc(
			calc(
				calc( 
					100%
					+
					calc(
						var(--vgap)
						* 
						calc(
							var(--columns) - 1
						)
					)
				)
				/ 
				var(--columns)
			)
			-
			calc(
				100%
				/ 
				var(--columns)
			)
		)
	;
	--column-width: calc(100% / var(--columns) - var(--gap-width-spare)) !important;
	height: auto;
	width: var(--column-width);
	display: flex;
}

.stadium-gallery .e-gallery-image {
	padding: 0px !important;
	width: calc(100% - 10px) !important;
	height: auto;
	aspect-ratio: var(--stadium-esagono-ratio-width) / var(--stadium-esagono-ratio-height) !important;
	clip-path: var(--stadium-esagono-poly);
	transform-origin: center;
}
.stadium-gallery a:hover > .e-gallery-image {filter: brightness(1.5);}

/* Responsive */
	@media screen and (max-width: 450px) {
		.stadium-gallery .e-gallery-grid {
			width: calc(100% - var(--stadium-esagono-offset) / 1);
		}
	}
/* END Responsive */