
.wp-block-gallery.photoswipe-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    margin: 20px 0 !important;
}

.wp-block-gallery.photoswipe-gallery .wp-block-image {
    margin: auto !important;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.wp-block-gallery.photoswipe-gallery .wp-block-image:hover {
    transform: scale(1.05);
}

.wp-block-gallery.photoswipe-gallery img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    border-radius: 8px;
    display: block;
}

/* PhotoSwipe Custom Styles */
.pswp__counter {
    font-size: 14px;
    color: #fff;
}

.pswp__caption__center {
    text-align: center;
    font-size: 14px;
    color: #fff;
    padding: 10px 0;
}

/* Responsywność */
@media (max-width: 768px) {
    .wp-block-gallery.photoswipe-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .wp-block-gallery.photoswipe-gallery img {
        height: 120px !important;
    }
}

@media (max-width: 480px) {
    .wp-block-gallery.photoswipe-gallery {
        grid-template-columns: 1fr !important;
    }

    .wp-block-gallery.photoswipe-gallery img {
        height: 200px !important;
    }
}

/* Dostosowanie PhotoSwipe dla mobile */
@media (max-width: 768px) {
    .pswp__button--arrow--left,
    .pswp__button--arrow--right {
        width: 44px !important;
        height: 44px !important;
    }
}