
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    height: 200px; 
}


.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); 
    color: #ffffff !important; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    opacity: 0; 
    transition: opacity 0.3s ease;
    z-index: 10; 
    pointer-events: none; 
}


.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


.gallery-overlay h4 {
    font-size: 14px !important;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #ffffff !important;
    display: block;
}

.gallery-overlay p {
    font-size: 11px !important;
    color: #ffffff !important;
    line-height: 1.2;
    display: block;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

