.pin-image-locked {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #0a0f1c;
}

.pin-image-blur {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(18px) brightness(0.7);
    transition: filter .3s ease;
    transform: scale(1.05);
}

.pin-image-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
    color: #fff;
    font-size: 2rem;
}

.pin-image-lock-overlay i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
}
