.angeli-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 1.5rem 0;
}
.angeli-gallery__item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1 / 1;
    background: #e9e9e9;
}
.angeli-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s;
}
.angeli-gallery__item:hover img {
    transform: scale(1.06);
}

.angeli-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .93);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.angeli-lightbox.open {
    display: flex;
}
.angeli-lightbox > img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 40px rgba(0, 0, 0, .6);
}
.angeli-lightbox__nav {
    position: absolute;
    top: 0;
    height: 100%;
    width: 18%;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    opacity: .55;
    transition: opacity .2s;
    z-index: 1;
}
.angeli-lightbox__nav:hover {
    opacity: 1;
}
.angeli-lightbox__prev {
    left: 0;
}
.angeli-lightbox__next {
    right: 0;
}
.angeli-lightbox__close {
    position: absolute;
    top: .8rem;
    right: 1.4rem;
    width: 3.2rem;
    height: 3.2rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
    opacity: .7;
    z-index: 2;
}
.angeli-lightbox__close:hover {
    opacity: 1;
}
.angeli-lightbox__count {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    opacity: .65;
    font: 14px system-ui, sans-serif;
}
