.pm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

    /* חשוב ליציבות */
    align-items: start;
}


/* =======================
   ITEM WRAPPER
======================= */
.pm-gallery-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}


/* =======================
   IMAGE
======================= */
.pm-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;

    display: block;

    border-radius: 12px;

    transition: transform 0.3s ease;
}


/* hover smoother */
.pm-gallery-item:hover img {
    transform: scale(1.05);
}


/* =======================
   RESPONSIVE
======================= */

/* tablet */
@media (max-width: 1024px) {
    .pm-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .pm-gallery-grid {
        grid-template-columns: 1fr;
    }

    .pm-gallery-item img {
        height: 220px;
    }
}