.micro-gallery {
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.micro-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.micro-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.micro-gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
