gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin: 1em;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  border: 4px ridge var(--border);
	border-radius: 5px;
  text-align: center;
  padding: 0.5em;
  align-self: center;
}

.gallery-img img {
  width: 100%;
  max-height: 256px;
  margin: 0;
  object-fit: contain;
}

.gallery-text {
  display: inline-block;
  align-self: flex-end;
  font-size: 16px;
  margin-top: 0.5em;
  line-height: 1.4;
  width: 0;
  min-width: 100%;
}