.ce-liberty-native-gallery--hidden {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.ce-liberty-gallery {
    width: 100%;
    margin: 0 0 20px;
}

.ce-liberty-gallery__stage {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ce-liberty-gallery__main-link {
    display: flex;
    width: 100%;
    min-height: 420px;
    align-items: center;
    justify-content: center;
}

.ce-liberty-gallery__main {
    display: block;
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: contain;
}

.ce-liberty-gallery__nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    box-shadow: 0 1px 6px rgba(0,0,0,.18);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.ce-liberty-gallery__nav--prev {
    left: 10px;
}

.ce-liberty-gallery__nav--next {
    right: 10px;
}

.ce-liberty-gallery__count {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 4px 8px;
    border-radius: 3px;
    background: rgba(255,255,255,.9);
    font-size: 12px;
}

.ce-liberty-gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 2px 2px;
}

.ce-liberty-gallery__thumb {
    flex: 0 0 82px;
    width: 82px;
    height: 82px;
    padding: 3px;
    border: 1px solid #d6d6d6;
    background: #fff;
    cursor: pointer;
}

.ce-liberty-gallery__thumb.is-active {
    border-width: 2px;
    border-color: #222;
}

.ce-liberty-gallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ce-liberty-gallery--single .ce-liberty-gallery__nav,
.ce-liberty-gallery--single .ce-liberty-gallery__count {
    display: none;
}

@media (max-width: 767px) {
    .ce-liberty-gallery__stage,
    .ce-liberty-gallery__main-link {
        min-height: 300px;
    }

    .ce-liberty-gallery__main {
        max-height: 460px;
    }

    .ce-liberty-gallery__thumb {
        flex-basis: 68px;
        width: 68px;
        height: 68px;
    }
}
