/* CSS for mobile hover effect */ @media only screen and (max-width: 767px) { .image-container:hover::before { content: attr(alt); position: absolute; background: rgba(0, 0, 0, 0.8); color: #fff; padding: 5px; border-radius: 5px; font-size: 14px; white-space: nowrap; z-index: 999; display: block; width: max-content; } }