.group\/gallery {
    isolation: isolate;
}

.group\/gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.18) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.group\/gallery:hover::before {
    opacity: 1;
}

.group\/gallery img {
    filter: saturate(1.02) contrast(1.04);
}

.group\/gallery:hover img {
    transform: scale(1.08);
}

.gallery-badge {
    backdrop-filter: blur(12px);
}

