#gallery-intro {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #800000;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

#gallery-grid {
  column-count: 2;
  column-gap: 18px;
}

/* each photo is its own 98.css "window" */
.photo-window {
  font-family: Arial, sans-serif;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 18px;
}

.photo-window .title-bar {
  cursor: default;
}

.photo-window .title-bar-text {
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-window .window-body {
  margin: 6px;
}

.polaroid-photo {
  width: 100%;
  border: 2px inset #808080;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: #555;
  overflow: hidden;
}

.polaroid-photo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

/* status bar along the bottom of each window doubles as the caption */
.photo-window .status-bar {
  margin-top: 0;
}

.photo-window .status-bar-field {
  font-size: 11px;
  color: #000080;
  font-weight: bold;
}

@media (max-width: 480px) {
  #gallery-grid {
    column-count: 1;
  }
}