.custom-image-hover {
    position: relative;
    width: 270px;
    height: 550px;
    overflow: hidden;
    background: black;
    box-sizing: border-box;
}

/* Resim: absolute + transform ile merkezleme */
.custom-image-hover__image {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    transition: filter 1.5s ease;
    display: block;
}

/* Hover efekti */
.custom-image-hover:hover .custom-image-hover__image {
    filter: blur(5px) grayscale(100%);
}

/* Overlay */
.custom-image-hover__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Overlay aktifken */
.custom-image-hover:hover .custom-image-hover__overlay {
    opacity: 1;
}

