/* Gallery Captions on Hover */ .gallery-grid-item { position: relative; } .gallery-caption-content { position: absolute; bottom: 0; /* Position at the bottom */ left: 0; width: 100%; padding: 12px; background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay */ color: #fff; /* White text */ text-align: center; transform: translateY(0); transition: all 0.3s ease; z-index: 2; } .gallery-grid-item:hover .gallery-caption-content { transform: translateY(-10px); /* Slide up on hover */ }