/* Ensure captions are hidden on load */ .sqs-gallery-block .gallery-caption, .sqs-gallery-block .gallery-caption-content { opacity: 0; visibility: hidden; transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s; } /* Show captions smoothly when hovering */ .sqs-gallery-block .gallery-item:hover .gallery-caption, .sqs-gallery-block .gallery-item:hover .gallery-caption-content { opacity: 1; visibility: visible; transition-delay: 0s; } /* Reduce text size for smaller screens */ @media screen and (max-width: 768px) { .sqs-gallery-block .gallery-caption-content { font-size: 0.8rem; } }