.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 300px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 200px;
    }
}