/*
.gallery_container
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 8px;
}

.gallery
{
	border-radius: 10px;	
}
*/

.gallery_container 
{
    column-width: 300px; 
    column-gap: 15px;
    max-width: 1120px;
    margin: auto;
}

.gallery_container a 
{
    break-inside: avoid; 
    margin-bottom: 15px; 
    display: block; 
    width: 100%;
    box-sizing: border-box;
}

.gallery_container a img 
{
    width: 100%;
    height: auto;
    display: block;
	border-radius: 10px;
	margin-bottom: 1em!important;
}