.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 16px auto 40px;
  max-width: 560px;
}

.polaroid {
  background: var(--paper-white);
  padding: 12px 12px 28px;
  box-shadow: 0 6px 18px var(--shadow-warm);
  border-radius: 2px;
  width: 220px;
  transform: rotate(var(--polaroid-rotation, 0deg));
  transition: transform 300ms ease;
}

.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--bg-cream-deep);
  border-radius: 1px;
}

.polaroid figcaption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-align: center;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 16px;
  min-height: 1.6em;
}

@media (min-width: 480px) {
  .polaroid { width: 240px; }
}

.polaroid-wrapper {
  display: inline-block;
}
