.shots-page {
    padding: 40px 0 70px
}

.shots-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px
}

    .shots-toolbar input {
        width: 320px;
        max-width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        border: 1px solid #333;
        background: #111;
        color: #fff
    }

.shots-count {
    opacity: .8
}

.shots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
    gap: 18px
}

.shot-card {
    border: 0;
    padding: 0;
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0,0,0,.28);
    transition: .18s
}

    .shot-card:hover {
        transform: translateY(-4px) scale(1.01)
    }

    .shot-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block
    }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999
}

    .lightbox.open {
        display: flex
    }

    .lightbox img {
        max-width: 90vw;
        max-height: 84vh;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,.45)
    }

.lb-close, .lb-nav {
    position: absolute;
    border: 0;
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
    border-radius: 12px
}

.lb-close {
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 22px
}

.lb-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 72px;
    font-size: 28px
}

    .lb-nav.prev {
        left: 20px
    }

    .lb-nav.next {
        right: 20px
    }

.lb-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 16px;
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    color: #fff;
    max-width: 80vw;
    text-align: center
}

@media(max-width:768px) {
    .shot-card img {
        height: 150px
    }

    .lb-nav {
        width: 46px;
        height: 58px
    }
}
