/* Flex Image Gallery */
.pm-img-tile {
	margin:0;
	padding:0;
	width:100%;
}
.pm-img-tile ul {
  display: flex;
  flex-wrap: wrap;
  list-style:none !important;
  gap:10px 10px;
  padding-left:0 !important;
  align-content:space-around;
  width:100%;
}
/*
.pm-img-tile ul:after {
    content:'';
    display:block;
    flex-grow: 10;
}
*/
.pm-img-tile li {
  height: 28vh;
  flex-grow: 1;
  margin-bottom:0 !important;
}
.pm-img-tile img {
  max-height: 100%;
  min-width: 100%;
  object-fit: cover;
  vertical-align: bottom;
}


/* Portrait Aspect Ratio */
@media (max-aspect-ratio: 1/1) {
  .pm-img-tile li {
    height: 20vh;
  }
}

/* Short Screen Fix */
@media (max-height: 600px) {
  .pm-img-tile li {
   height: 50vh;
  }
}

/* Smaller Screens + Portrait */
@media (max-width: 1200px) and (min-width: 970px) {
	.pm-img-tile ul {
		flex-direction: row;
	}
	.pm-img-tile li {
		height: auto;
		width: 100%;
	}
	.pm-img-tile img {
		width: 100%;
		max-height: 75vh;
		min-width: 0;
  }
}


@media (max-aspect-ratio: 1/1) and (max-width: 600px) {
  .pm-img-tile ul {
    flex-direction: row;
  }
  .pm-img-tile li {
    height: auto;
    width: 100%;
  }
  .pm-img-tile img {
    width: 100%;
    max-height: 75vh;
    min-width: 0;
  }
}
@media (max-height: 600px) {
  .pm-img-tile li {
   height: 50vh;
  }
}