.custom-masonry-gallery {
    column-count: 2;
    column-gap: 10px;
}

@media (min-width: 768px) {
    .custom-masonry-gallery {
        column-count: 3;
    }
}

@media (min-width: 1025px) {
    .custom-masonry-gallery {
        column-count: 6;
    }
}

.custom-masonry-gallery .gallery-item {
    break-inside: avoid;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.1s;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-masonry-gallery .gallery-item:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-masonry-gallery .gallery-item img,
.custom-masonry-gallery .gallery-item a {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 !important;
}

.gallery-item.hidden {
    display: none;
}

.load-more-btn {
    margin: 30px auto 0;
    padding: 12px 24px;
    background-color: #C48F56;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    text-align: center;
}
