.npgs-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

/* Mobile */
@media (max-width: 766px) {
    .npgs-gallery {
        grid-template-columns: 1fr;
    }
}

.npgs-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 320 / 194;
}

/* fallback */
.npgs-item::before {
    content: "";
    display: block;
    padding-top: calc(194 / 320 * 100%);
}

.npgs-item a {
    position: absolute;
    inset: 0;
}

.npgs-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}