/**
* Block Name: gallery
*/

section.gallery .row {
  display: flex;
  flex-wrap: wrap;
}

section.gallery .image_wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-height: 400px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

section.gallery .image_wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex-grow: 1;
  max-height: 400px;
}

section.gallery .caption {
  background: var(--waldgrun);
  padding: 8px;
  color: var(--alabaster);
  text-align: left;
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  flex-shrink: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  word-break: auto-phrase;
}

section.gallery .caption span svg {
  margin-top: 3px;
}
