/***** bild und text nebeneinander */
.story-container {
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
    display: flex;
    /* Aktiviert Flexbox */
    align-items: center;
    /* Zentriert Bild und Text vertikal */
    gap: 20px;
    /* Erzeugt einen Abstand zwischen Bild und Text */
}

/** Bild */
.story-container img {
    max-width: 40%;
    /* Verhindert, dass das Bild zu groß wird */
    height: auto;
}

/**  Bild und text untereinander **/
/** Anpassung für Mobilgeräte (Schmaler als 768px) */
@media (max-width: 767px) {
    .story-container {
        flex-direction: column;
        /* Stapelt die Elemente untereinander */
        align-items: center;
        /* Zentriert Bild und Text optional */
        text-align: center;
        /* Zentriert den Text auf dem Handy */
    }

    .story-container img {
        width: 100%;
        /* Bild nutzt auf dem Handy die volle Breite */
        max-width: 400px;
        /* Aber wird nicht unendlich groß */
    }
}

.story-wrapper {
    padding: 80px 20px;
    background-color: #fff;
    /* Sauberer weißer Hintergrund */
    display: flex;
    justify-content: center;
}

.trio-story {
    max-width: 800px;
    position: relative;
    margin: 0;
    padding: 40px;
    background: #ffffff;
    /* Ein schöner, subtiler linker Rand in Gold- oder Holzoptik */
    border-left: 5px solid #d4af37;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.03);
}

.quote-mark {
    font-family: 'Georgia', serif;
    font-size: 80px;
    color: #d4af37;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.2;
    /* Sehr dezent im Hintergrund */
}

.trio-story p {
    font-family: 'Georgia', serif;
    /* Serifenschrift wirkt erzählerisch */
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.trio-story strong {
    color: #d4af37;
    /* Hebt das "Fundament" farblich hervor */
    font-weight: bold;
}

.trio-story cite {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}