/* Masonry-Grid für nsgallery-Album-Tiles via CSS columns */
.kf-masonry-album {
    margin-bottom: 3rem;
}

.kf-album-heading h3 {
    margin: 1.5rem 0 1rem 0;
    font-size: 1.5rem;
}

.kf-masonry-tiles {
    column-count: 4;
    column-gap: 0.5rem;
}

@media (max-width: 1200px) {
    .kf-masonry-tiles { column-count: 3; }
}
@media (max-width: 768px) {
    .kf-masonry-tiles { column-count: 2; }
}
@media (max-width: 480px) {
    .kf-masonry-tiles { column-count: 1; }
}

.kf-masonry-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 0.5rem 0;
    overflow: hidden;
    break-inside: avoid;
    transition: opacity 0.2s ease;
}

.kf-masonry-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.kf-masonry-item:hover img {
    transform: scale(1.02);
}
