/* ========================================
   Photo Wall Component
   ======================================== */

.photo-wall {
    width: 100%;
    height: 271px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.photo-wall-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
    gap: 0;
}

.photo-wall-image {
    position: relative;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
    width: 90px;
    height: 90px;
    border: 1px solid var(--bg-secondary);
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-secondary);
    transition: opacity 500ms ease-out, display 500ms ease-out, transform 250ms ease-out;
    transform: scale(1);
}

.photo-wall-image:hover {
    transform: scale(2);
    z-index: 999999;
}

.photo-wall-image.loaded {
    opacity: 1;
}
.photo-wall-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1000ms ease-out;
    pointer-events: none;
}

.photo-wall-image-overlay.visible {
    opacity: 1;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .photo-wall {
        display: none;
    }
}

