
/* Prep Guide Gallery refinements */
.pg-gallery-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pg-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.pg-gallery figure {
  margin: 0;
}

.pg-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.pg-gallery-caption {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}
