/* ============================= */
/* GRUNDSTRUKTUR */
/* ============================= */

.blog_main {
    padding: 50px 0;
}

.container {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
}

/* ============================= */
/* INFO BEREICH */
/* ============================= */

.blog_info {
    margin-bottom: 60px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ============================= */
/* BLOG SECTION */
/* ============================= */

.blog_section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* ============================= */
/* BLOG POST */
/* ============================= */

.blog_post {
    border: 1px solid #ddd;
    padding: 40px;
    border-radius: 10px;
    background: #f5f5f5; /* leichtes Grau */
}

/* Header */
.blog_post_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.blog_post_title {
    margin: 0;
    font-size: 1.6rem;
}

.blog_post_date {
    font-size: 0.9rem;
    color: #777;
}

/* Grüner Link */
.blog_post_text a {
    color: #274127;
    text-decoration: none;
    font-weight: 500;
}

.blog_post_text a:hover {
    color: #a3c293;
    text-decoration: underline;
}

.ziele-subtitle {
    font-size: 1.5rem;
    color: #274127;
    margin-bottom: 20px;
    border-left: 6px solid #a3c293;
    padding-left: 12px;
    font-weight: 600;
        font-family: 'open_sansregular';

}

/* ============================= */
/* CONTENT LAYOUT */
/* ============================= */

.blog_post_content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Text */
.blog_post_text {
    flex: 1.4;
    line-height: 1.6;
}

/* ============================= */
/* BILDBEREICH – KORRIGIERT */
/* ============================= */

.blog_post_images {
    flex: 1;
    display: flex;
    flex-direction: column;   /* untereinander */
    gap: 20px;
    align-items: center;      /* zentriert */
}

/* Proportionale Skalierung */
.blog_post_images img {
    max-width: 100%;          /* nie breiter als Container */
    width: 85%;               /* etwas kleiner als Container */
    height: auto;             /* proportional */
    object-fit: contain;      /* kein Abschneiden */
    border-radius: 8px;
    display: block;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1000px) {

    .blog_post_content {
        flex-direction: column;
    }

    .blog_post_images {
        flex-direction: column;
        width: 100%;
    }

    .blog_post_images img {
        height: auto;
        max-height: 300px;
    }

    .blog_post_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}