.analog-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.analog-header {
    text-align: center;
    margin-bottom: 6rem;
}

.analog-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.analog-subtitle {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    opacity: 0.5;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.analog-feed {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    align-items: center;
}

.analog-item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.analog-frame {
    /* Border und Padding entfernt */
    padding: 0;
    border: none;
    background-color: transparent;
    line-height: 0;
    transition: all 0.4s ease;
    
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.analog-frame img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    display: block;
    object-fit: contain;
    /* Dezenter Grauschleier, der bei Hover verschwindet */
    filter: grayscale(10%);
    transition: filter 0.6s ease;
}

.analog-frame:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .analog-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    .analog-feed {
        gap: 4rem;
    }
    .analog-frame {
        max-width: 100%;
    }
}