/* Filter Transition */
.project-item {
    transition: all 0.4s ease-out;
}

.project-item.hidden-item {
    opacity: 0;
    transform: scale(0.95);
    display: none;
    /* Layout shift */
}