.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.gallery-filters .filter-button {
    padding: 10px 15px;
    margin: 5px;
    border: none;
    background: #eee;
    cursor: pointer;
    transition: 0.3s;
    color: inherit;
}
.gallery-filters .filter-button.active {
    background: #ff8031;
    color: #fff;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7.5px;
}

.gallery-item {
    width: calc(50% - 15px);  /* 👈 Two per row */
    margin: 7.5px;
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .gallery-item {
        width: 100%;  /* 1 per row on small screens */
    }
}