/* Gallery card styles for About -> Shop tour */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gallery-card { position: relative; overflow: hidden; border-radius: 1rem; cursor: pointer; }
.gallery-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-card:hover img, .gallery-card:focus img { transform: scale(1.06); }
.gallery-card .caption { position: absolute; left: 0; right: 0; bottom: 0; padding: .75rem 1rem; background: linear-gradient(180deg, rgba(11,15,25,0) 0%, rgba(11,15,25,0.6) 60%, rgba(11,15,25,0.8) 100%); color: #fff; transform: translateY(100%); transition: transform .28s ease; }
.gallery-card:hover .caption, .gallery-card:focus .caption { transform: translateY(0%); }
.gallery-card .caption h4 { margin: 0; font-size: 1rem; }
.gallery-card .caption p { margin: 0; font-size: .85rem; opacity: .9; }

/* Modal carousel images */
.gallery-modal .carousel-item img { width: 100%; height: 65vh; object-fit: contain; background: #0b0f19; }

@media (min-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
