.gallery-grid-50e52072 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(var(--gallery-cols-50e52072, 3), 1fr);
}

.gallery-item-50e52072 {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.gallery-item-50e52072 img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-50e52072:hover img {
    transform: scale(1.05);
}

.gallery-overlay-50e52072 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    pointer-events: none; /* Let clicks pass through */
}

.gallery-overlay-bg-50e52072 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
    pointer-events: none;
}