.mpg-gallery-wrapper {
    width: 100%;
}
.mpg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.mpg-gallery-grid .mpg-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mpg-gallery-grid .mpg-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.mpg-gallery-grid .mpg-gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.mpg-lightbox {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.mpg-lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
}
.mpg-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

/* Lightbox стрелки */
.mpg-lightbox-prev,
.mpg-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 12px;
    user-select: none;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
}

.mpg-lightbox-prev {
    left: 30px;
}

.mpg-lightbox-next {
    right: 30px;
}

.mpg-lightbox-prev:hover,
.mpg-lightbox-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Single layout за photo_gallery */
.mpg-single-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-top: 24px;
    margin-bottom: 40px;
}

.mpg-single-sidebar {
    flex: 0 0 320px;
    max-width: 320px;
    position: sticky;
    top: 100px;
}

.mpg-single-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.mpg-single-excerpt {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    opacity: 0.9;
}

.mpg-single-ad {
    width: 300px;
    height: 250px;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    border: 1px dashed #ccc;
    font-size: 13px;
    text-align: center;
    padding: 8px;
}

.mpg-single-gallery {
    flex: 1 1 auto;
}

@media (prefers-color-scheme: dark) {
    .mpg-gallery-grid .mpg-gallery-item {
        box-shadow: 0 6px 18px rgba(0,0,0,0.6);
    }

    .mpg-single-ad {
        background: #1f1f1f;
        border-color: #444;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .mpg-single-layout {
        flex-direction: column;
    }

    .mpg-single-sidebar {
        position: static;
        max-width: 100%;
    }

    .mpg-single-ad {
        margin-bottom: 20px;
        margin-top: 10px;
    }
}
