.jumbotron {
    background-color: white;
}

.jumbotron p {
    color: black;
}

.jumbotron h1 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

/* Container für die Bilder */
.blog-img-container {
    display: flex;
    flex-wrap: wrap;
    /* Bilder werden bei Bedarf umgebrochen */
    justify-content: space-around;
    /* Verteilt die Bilder gleichmäßig */
}

/* Jedes einzelne Bild */
.blog-img {
    width: 100%;
    /* 100% der Breite des Containers */
    max-width: 300px;
    /* Maximale Breite */
    margin-bottom: 15px;
    /* Abstand unter den Bildern */
    overflow: hidden;
    /* Verhindert, dass Inhalte außerhalb des Containers sichtbar sind */
    display: flex;
    /* Bild wird in Flex-Container gesetzt */
    justify-content: center;
    /* Zentriert das Bild im Container */
    position: relative;
    /* Ermöglicht das Setzen von width/height */
    aspect-ratio: 1;
    /* Macht das Bild quadratisch (1:1 Verhältnis) */
}

.blog-img-single {
	max-width: 35vw;
}

/* Das Bild innerhalb des Containers */
.blog-img img {
    width: 100%;
    /* Bild nimmt volle Breite des Containers ein */
    height: 100%;
    /* Bild nimmt volle Höhe des Containers ein */
    object-fit: cover;
    /* Bild wird zugeschnitten, um den Container zu füllen */
    object-position: center;
    /* Bild wird in der Mitte beschnitten, um das Wichtigste zu zeigen */
}

.blog-img.float-left {
    float: left;
    /* Bild links ausrichten */
    margin-right: 15px;
    /* Abstand rechts vom Bild */
    margin-bottom: 15px;
    /* Abstand unter dem Bild */
}

.blog-img.float-right {
    float: right;
    /* Bild rechts ausrichten */
    margin-left: 15px;
    /* Abstand links vom Bild */
    margin-bottom: 15px;
    /* Abstand unter dem Bild */
}


.btn-outline-kinderlinge {
	color: var(--primary-color);
	background-color: transparent;
	background-image: none;
	border-color: var(--primary-color);
}

.btn-outline-kinderlinge:hover {
    background-color: var(--primary-color);
    color: white !important;
}

/* Haupt-Container */
.content {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    /* margin: 0 auto; */
    padding: 20px;
    /* background-color: #f9f9f9; */
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

/* Überschrift H2 */
.content h2 {
    font-size: 1.8em;
    color: #d9534f;
    margin-bottom: 10px;
    border-bottom: 2px solid #d9534f;
    padding-bottom: 5px;
}

/* Überschrift H3 */
.content h2 {
    font-size: 1.5em;
    color: #5bc0de;
    margin-top: 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid #5bc0de;
    padding-bottom: 4px;
}

/* Überschrift H4 */
.content h3 {
    font-size: 1.2em;
    color: #5cb85c;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Absatztext */
.content p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
}

/* Ungeordnete Liste */
.content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 8px;
    color: #333;
}

/* Fettgedruckter Text */
.content strong {
    color: #333;
    font-weight: bold;
}


/* Zitatblock */
.content blockquote {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #f2f2f2;
    border-left: 4px solid #d9534f;
    font-style: italic;
    color: #666;
}

/* Bild-Styling */
.content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}


/* Anpassung für Mobilgeräte (max-width: 768px) */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem !important;
    }

    .blog-img-container {
        flex-direction: column;
        /* Bilder übereinander anordnen */
        justify-content: flex-start;
        /* Bilder oben anordnen */
        align-items: center;
    }

    .blog-img {
        width: 100%;
        /* Volle Breite auf Mobilgeräten */
        max-height: 300px;
        /* Maximale Höhe beibehalten */
    }
    .blog-img-single {
        max-width: 300px;
    }
}