body {
  margin: 0;
  font-family: sans-serif;
}

.gallery-section {
  margin-bottom: 48px;
}

.gallery-title {
  margin: 16px;
  font-size: 18px;
  font-weight: bold;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.gallery-item {
  padding: 0;
  border: none;
  background: none;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal.is-open {
  display: flex;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
}

.download {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #fff;
  text-decoration: underline;
}

.modal {
  touch-action: pan-y;
}
