/* ============================================
   ADRIA POST GALLERY — frontend
   ============================================ */
.apg-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

@media (max-width: 768px) {
  .apg-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.apg-gallery .apg-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #f3f4f6;
  text-decoration: none;
  aspect-ratio: 4/3;
  transition: transform .25s ease;
}
.apg-gallery .apg-item:hover {
  transform: translateY(-2px);
}

.apg-gallery .apg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.apg-gallery .apg-item:hover img {
  transform: scale(1.05);
}

.apg-gallery .apg-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,0));
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  pointer-events: none;
}

/* GLightbox custom styling - caption tipografija */
.glightbox-clean .gslide-description {
  background: rgba(0,0,0,.85);
  color: #fff;
}
.glightbox-clean .gslide-title {
  color: #fff;
  font-weight: 600;
}
