.ga-artist-gallery {
    width: 100%;
}

.ga-artist-gallery__layout,
.ga-artist-gallery__static {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.ga-artist-gallery__layout {
    cursor: pointer;
}

.ga-artist-gallery__tile {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    background: #f5f5f5;
}

.ga-artist-gallery__tile img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

.ga-artist-gallery__badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.94);
    width: 146px;
    height: 146px;
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    color: #777;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding-top: 8px;
    box-sizing: border-box;

    font-family: Gilda, Georgia, 'Times New Roman', serif;
    font-size: 25px;
    line-height: 1;
    letter-spacing: .02em;

    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    z-index: 2;
}

.ga-artist-gallery__layout .ga-artist-gallery__tile:hover img {
    transform: scale(1.025);
    filter: brightness(.92);
}

.ga-artist-gallery__layout .ga-artist-gallery__tile:hover .ga-artist-gallery__badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.ga-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(255,255,255,.98);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.ga-lightbox.is-open {
    display: flex;
}

.ga-lightbox__img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
    box-shadow: 0 20px 70px rgba(0,0,0,.18);
}

.ga-lightbox__close,
.ga-lightbox__prev,
.ga-lightbox__next {
    position: absolute;
    border: 0;
    background: rgba(255,255,255,.95);
    color: #222;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

.ga-lightbox__close {
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 30px;
}

.ga-lightbox__prev,
.ga-lightbox__next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 38px;
}

.ga-lightbox__prev { left: 24px; }
.ga-lightbox__next { right: 24px; }

.ga-lightbox__counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: #222;
    font-size: 14px;
}

@media (max-width: 768px) {
    .ga-artist-gallery__badge {
        width: 140px;
        height: 140px;
        font-size: 24px;
    }
}
