
.galerie {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
	 max-width: 650px;  /* schmale Darstellung  */
    margin: 0 auto; /* zentriert */
}

@media (max-width: 768px) {
    .galerie {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .galerie {
        grid-template-columns: 1fr;
    }
}
.galerie img {
    width: 200px;
    height: 150px;
    object-fit: cover;
}
.foto {
    text-align: center;
}

.foto figcaption {
    margin-top: 8px;
    font-style: italic;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}
.pfeil {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    border: none;
    background: rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
}

.pfeil:hover {
    background: rgba(255,255,255,0.4);
}

.links {
    left: 20px;
}

.rechts {
    right: 20px;
}

.schliessen {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
