/* Gitter-tema */
.gallery.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* Masonry-tema */
.gallery.masonry {
    column-count: 3; /* Antal kolonner */
    column-gap: 15px; /* Afstand mellem kolonner */
}
.gallery.masonry img {
    width: 100%;
    margin-bottom: 15px;
    break-inside: avoid; /* Forhindrer brud mellem kolonner */
}

/* Generel billed-styling */
.gallery img {
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    width: 100%; /* For Gitter */
    height: auto; /* For Masonry */
}

/* Hover-effekt */
.gallery img:hover {
    transform: scale(1.05);
}
/* Liste-tema */
.gallery.list {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrer billederne */
    gap: 15px;
}

.gallery.list img {
    width: 80%; /* Reducer billedbredden */
    max-width: 400px; /* Begræns maksimal bredde */
    margin: 0 auto; /* Centrer billederne horisontalt */
}
