.teamleden_container{
	grid-template-columns: repeat(auto-fill,minmax(32rem,1fr));
    display: grid;
    column-gap: 3rem;
    row-gap: 4.75rem;
}

.teamlid_foto{
	background: var(--donkergrijs);
	border-radius: 1rem;
	overflow: hidden;
	aspect-ratio: 1;
    display: flex;
    align-items: flex-end;
}

@media (max-width:767px)
{		
	.teamleden_container {
    	grid-template-columns: 1fr 1fr;
	}
}

@media (min-width:768px) and (max-width:991px)
{
	.teamleden_container {
    	grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
	}
}

@media (min-width:992px) and (max-width:1199px)
{
	.teamleden_container {
    	grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
	}
}

@media (min-width:1200px) and (max-width:1399px)
{
    
}

@media (min-width:1400px)
{
    
}