 /*  Style Kurzgeschichte zu einem Bild aus analogen Zeiten   */
 
 .info-container {
    width: 50vw;          /* 50 % der Viewport-Breite */
    max-width: 800px;     /* Optional: maximale Breite */
    min-width: 280px;     /* Optional: Mindestbreite */
    margin: 2rem auto;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

/* Smartphones */
@media (max-width: 767px) { }

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) { }

/* Laptops/Desktop */
@media (min-width: 1024px) { }

/* Große Monitore */
@media (min-width: 1440px) { }

.info-image {
    display: block;
    width: 70%;  /* Desktop */
    margin: 40px auto 40px; /* oben | rechts/links automatisch | unten */
    border: 1px solid #999;
    border-radius: 10px;
    box-sizing: border-box;
}

/* Smartphones Hochformat */
@media (max-width: 767px) {
    .info-image {
        width: 95%;
        margin: 20px auto 35px; /* unten 35px */
    }
}

/* Smartphones Querformat */
@media (max-width: 767px) and (orientation: landscape) {
    .info-image {
        width: 100%;      
        margin: 20px auto 35px;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) { 
   .info-image {
        width: 70%;
        margin: 40px auto 20px;
    }

}

/* Laptops/Desktop */
@media (min-width: 1024px) { }

/* Große Monitore */
@media (min-width: 1440px) { }
