
.photo-box {
    max-width: 100%;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* sorgt dafür, dass das Bild den Container ausfüllt */
    border-radius: 8px; /* Optional: abgerundete Ecken */
}
