/* Force gallery to three columns with high specificity */
.post-view .image-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important; /* three columns */
  gap: 20px !important;
  margin: 15px 0 20px !important;
  width: 100% !important;
}

.post-view .image-gallery img {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;   /* uniform boxes */
  object-fit: cover !important;     /* maintain uniform cropping */
  border-radius: 12px !important;
  display: block !important;
  cursor: pointer !important;
  transition: transform 0.3s ease !important;
}

.post-view .image-gallery img:hover {
  transform: scale(1.03) !important;
}

/* Responsive: single column on small screens */
@media (max-width: 768px) {
  .post-view .image-gallery {
    grid-template-columns: 1fr !important;
  }
}
