.prp-gallery-item {
    position: relative;
    height: 190px;
    overflow: hidden;
    border-radius: .65rem;
    background: #e9ecef;
}

.prp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.prp-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(5, 22, 43, .48));
    opacity: .7;
    transition: opacity .3s ease;
}

.prp-gallery-item:hover img { transform: scale(1.045); }
.prp-gallery-item:hover::after { opacity: 1; }

.prp-gallery-zoom {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    z-index: 1;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
}

@media (max-width: 575.98px) {
    .prp-gallery-item { height: 220px; }
}
