.oh {
    overflow: hidden;
}

.oh:hover [data-original] {
    transition: all 300ms ease !important;
    transform: scale(103%);
    
}

 .scale {
    overflow: hidden; /* Скрываем всё за контуром */
}

.scale img {
    transition: 1s; /* Время эффекта */
    display: block; /* Убираем небольшой отступ снизу */
}

.scale img:hover {
    transform: scale(1.05); /* Увеличиваем масштаб */
   }