.work-visual {
    isolation: isolate;
    overflow: hidden;
    position: relative;
}
.work-visual img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transition: transform .35s ease;
    width: 100%;
    z-index: -2;
}
.work-visual:has(img)::after {
    background: rgba(11, 29, 39, .28);
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}
.work-card:hover .work-visual img {
    transform: scale(1.05);
}
