/* image-zoom.css - Styles for image wrappers and scroll zoom effect */
.image-col {
    position: relative;
    z-index: 1;
}
.image-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    height: 360px;
    width: 100%;
    transform: translateZ(0);
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s linear;
    will-change: transform;
    transform: scale(1);
}
@media (max-width: 900px) {
    .image-wrapper { height: 250px; }
}
