﻿#mitte h2 {
        color: #006cb5;
    text-shadow: 2px 3px #ffffff;
    text-align: left;    margin: .19em auto .31em;
    text-indent: 1vw;

}

/* Standardstil für Desktop */
.image_full {
    display: block;
    margin: 0;
    padding-right: 8px;
    float: left; /* Für Desktop-Ansichten */
    max-width: 400px; /* Maximale Breite des Bildes */
    width: 100%; /* Sicherstellen, dass das Bild skalierbar ist */
    height: auto; /* Beibehalten des Seitenverhältnisses */
}

.image_mobile {
    display: none; /* Wird nur auf mobilen Geräten angezeigt */
}

/* Responsive Design für mobile Geräte */
@media (max-width: 768px) {
    .image_full {
        display: none; /* Wird nur auf mobilen Geräten angezeigt */
    }

    .image_mobile {
        display: block; /* Mobile Bilder anzeigen */
        margin: 0 auto; /* Zentrieren des Bildes */
         float: left;
        max-width: 280px; /* Maximale Breite des Bildes */
        width: 100%; /* Bild skalierbar machen */
        height: auto; /* Beibehalten des Seitenverhältnisses */
    }
}


@media (max-width: 540px) and (min-width: 320px){
  .image_full{
   display:none;
  }

  .image_mobile{
   display:block;
   margin: 0px 0px 15px 0px;
   float:none;
   display: block;
   margin-left: auto;
   margin-right: auto;
  }
  
}
article {
    border-bottom: 2px dotted #C2B280; /* Dezente Abtrennung */
    padding-bottom: 20px;
    margin-bottom: 20px;
}
article h3 {
    font-weight: normal;
    margin-bottom: 5px;
    margin-top: 0px;
}
article p {
    line-height: 1.5;
    margin-top: 12px;
    margin-bottom: 12px;
    color: #002147; /* Dunkelblau für bessere Lesbarkeit */
}

ul {
    display: block;
    list-style-type: disc;
  margin-left: 225px; 
    margin: 1em 0;
}
#mitte ul li {  
  list-style-position: inside; 
  margin-left: 25px; 
  margin: .5em 0; 
}

