/*
 * *
 * * Gallery
 */
.c-gallery-page {
  margin-bottom: 40px;
}


.c-gallery-page__items-list {
  display: flex;
  flex-wrap: wrap;
}


.c-gallery-page__gallery-item {
  padding: 2px;
  margin: 4px;
  border: 4px double #d2d2d2;
  text-align: center;
  width: calc(25% - 8px);
}


.c-gallery-page__gallery-item-description {
  word-break: break-word;
  max-width: 200px;
}


.c-gallery-page__gallery-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}


/*
 * *
 * * Mobile Gallery
 */
@media only screen and (max-width: 1110px) {
  .c-gallery-page__items-list {
  justify-content: center;
}


.c-gallery-page__gallery-item {
  width: calc(50% - 8px);
}
}


