.tte-gallery {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
}

.tte-gallery.is-open {
    display: flex;
}

html.tte-gallery-open {
    overflow: hidden;
}

.tte-gallery__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
}

.tte-gallery__stage {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.tte-gallery__img {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.tte-gallery__caption {
    margin: 12px 0 0;
    color: #231815;
    font-size: 1rem;
}

.tte-gallery__close,
.tte-gallery__prev,
.tte-gallery__next {
    position: fixed;
    z-index: 3;
    border: 0;
    background: transparent;
    color: #231815;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.tte-gallery__close {
    top: 24px;
    right: 24px;
    font-size: 3rem;
}

.tte-gallery__prev,
.tte-gallery__next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.tte-gallery__prev {
    left: 16px;
}

.tte-gallery__next {
    right: 16px;
}
