.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #111111;
    color: white;
    position: relative;
}

.gallery .lt-block-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery .lt-block-wrapper > div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-gallery-link {
    position: absolute;
    bottom: 2.5%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 9;
    align-items: center;
    background: var(--lite);
    padding: 0.5% 1.5%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: auto !important;
    height: auto !important;
}

.full-gallery-link a,
i.fa-solid.fa-arrow-up-right-from-square {
    color: var(--accent);
}

.slick-container {
    width: 100%;
    height: 100%;
    max-width: 1400px;
    height: auto;
    direction: ltr;
    overflow: hidden;
}

.slick-list {
    perspective: 1500px;
    padding: 5% 2% !important;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.slick-track {
    display: flex;
    align-items: center;
    transform-style: preserve-3d;
}

.slick-slide {
    text-align: center;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.slick-slide.slick-current.slick-active.slick-center {
    cursor: pointer;
}

.slick-slide a {
    z-index: 10;
    position: relative;
}

.slick-slide img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.slick-prev,
.slick-next {
    color: white;
    font-size: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-arrow {
    font-size: 0;
}

.slick-arrow:before {
    font-size: 20px;
}

body.mobile .slick-prev,
body.mobile .slick-next {
    display: none !important;
}

.swipe-hint {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    animation: hint-fadein 0.5s ease 0.5s forwards;
    z-index: 9999;
    width: auto !important;
    height: auto !important;
}

.swipe-hint p {
    margin: 4px 0 0;
    font-size: 0;
    color: #fff;
}

.swipe-hand {
    width: 28px;
    height: 28px;
    animation: hand-move 3s infinite ease-in-out;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.4));
}

.swipe-hand path {
    fill: var(--lite) !important;
}

@keyframes hand-move {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(18px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes hint-fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 769px) {
    .swipe-hint {
        display: none !important;
    }
}

body.mobile .slick-slide {
    transform: none !important;
    opacity: 1 !important;
    margin: 0 10px !important;
    -webkit-box-reflect: none !important;
    box-reflect: none !important;
}

body.mobile .slick-slide.slick-center {
    transform: none !important;
    opacity: 1 !important;
}

/*
.gallery-tags {
  position: absolute;
  top: 2.5%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 9;
}

.gallery-tag {
    background: var(--lite);
    color: var(--accent) !important;
    padding: 0 2%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-tags {
    width: 100%;
    justify-content: center;
}

.gallery-tag.active {
    background: var(--accent);
    color: var(--lite) !important;
}

body.mobile .gallery-tags,
body.mobile .full-gallery-link {
    width: 60%;
    margin: 0 auto;
}

.gallery-tag,
.full-gallery-link a {
    color: var(--lite);
    text-decoration: none !important;
    transition: all 0.5s ease-in-out;
}

.gallery-tag:before {
    content: '#';
}

@media (hover: hover) {
    .gallery-tag:hover,
    .full-gallery-link a:hover {
        border-bottom: 1px dashed;
    }
}

.gallery-tag.active {
    border-bottom: 1px solid;
}
*/
