.wv-lb-thumb {
    display: inline-block;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f2f2f2;
    text-decoration: none;
    vertical-align: top;
    box-sizing: border-box;
	margin-right: 8px;
	margin-bottom: 8px;
}

.wv-lb-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border: 0;
}

.wv-lb-overlay[hidden] {
    display: none;
}

.wv-lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    padding: 56px 64px;
    box-sizing: border-box;
}

.wv-lb-stage {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wv-lb-image {
    display: block;
    max-width: calc(100vw - 128px);
    max-height: calc(100vh - 112px);
    width: auto;
    height: auto;
    object-fit: contain;
}

.wv-lb-caption {
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    max-width: 90vw;
}

.wv-lb-close,
.wv-lb-nav {
    position: fixed;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: background 0.15s ease, transform 0.15s ease;
}

.wv-lb-close:hover,
.wv-lb-nav:hover,
.wv-lb-close:focus-visible,
.wv-lb-nav:focus-visible {
    background: rgba(255, 255, 255, 0.3);
    outline: none;
}

.wv-lb-close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 34px;
}

.wv-lb-nav {
    top: 50%;
    width: 48px;
    height: 64px;
    font-size: 38px;
    transform: translateY(-50%);
}

.wv-lb-prev {
    left: 18px;
}

.wv-lb-next {
    right: 18px;
}

.wv-lb-nav.is-hidden {
    display: none;
}

body.wv-lb-open {
    overflow: hidden;
}

@media (max-width: 700px) {
    .wv-lb-overlay {
        padding: 52px 12px 28px;
    }

    .wv-lb-image {
        max-width: calc(100vw - 24px);
        max-height: calc(100vh - 104px);
    }

    .wv-lb-nav {
        width: 42px;
        height: 52px;
        font-size: 32px;
        background: rgba(255, 255, 255, 0.22);
    }

    .wv-lb-prev {
        left: 8px;
    }

    .wv-lb-next {
        right: 8px;
    }
}
