.gallery {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
}

#gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  text-align: center;
  border-top: 6px solid var(--green);
}

.gallery-item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.gallery-caption {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  font-style: italic;
}