.fotobulk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.fotobulk-item img {
    width: 150px;
    height: 200px!important;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 2px solid #fff;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-in-out;
}

.fotobulk-item img:hover {
    transform: scale(1.05);
}
