/******* Do not edit this file *******/
/*
My Custom CSS - by Salvatore Noschese
aka L'AltroWeb - https://laltroweb.it/
/*
Saved: Mar 24 2026 | 07:47:47 (am)
/*
/******* Do not edit this file *******/

/* 1. Targets the actual image inside the block and forces the base transition and radius */
.hover-zoom-img img {
    /* We add border-radius to the transition list to ensure smoothness if we ever change it */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-radius 0.3s ease-in-out !important;
    border-radius: 8px !important; /* This is the radius you see before hovering */
}

/* 2. Defines what happens on hover, ensuring the radius is maintained */
.hover-zoom-img:hover img {
    transform: scale(1.03) translateY(-5px) !important;
    box-shadow: 0 15px 25px rgba(0,0,0,0.15) !important;
    
    /* THE FIX: Re-declare the same radius here so it persists on hover */
    border-radius: 8px !important; 
}