.lightbox-wrap {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.lightbox-wrap::backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close,
.lightbox-nav {
    display: flex;
    line-height: 1;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: monospace;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 10rem;
    cursor: pointer;
    transition: all ease 0.3s;
}

.lightbox-close:hover,
.lightbox-nav:hover {
opacity: 0.5;
}

.lightbox-prev {
    margin-left: 1rem;
}

.lightbox-next {
    margin-right: 1rem;
}

.lightbox-close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff;
    background: none;
}

.responsive-container {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 85dvw;
    max-height: 85dvh;
}

.responsive-container.video-embed {
    min-height: auto;
}

.responsive-container iframe, .responsive-container img {
    width: 100%;
    height: 100%;
}

.responsive-container img {
    object-fit: contain;
    object-position: center;
    box-sizing: border-box;
}
