.story-box-wrapper-6f6321f5 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    background: transparent;
    padding: 20px;
}
.story-box-content-6f6321f5 {
    flex: 1 1 300px;
    order: 1; /* Left side by default */
}
.story-box-image-6f6321f5 {
    flex: 1 1 300px;
    order: 2; /* Right side by default */
}
.story-box-title-6f6321f5 {
    font-size: 2.2em;
    color: #3b2c24;
    margin-bottom: 15px;
    font-weight: bold;
}
.story-box-desc-6f6321f5 {
    font-size: 1.1em;
    line-height: 1.8;
    color: #5a4b43;
    margin-bottom: 25px;
}
.story-box-quote-6f6321f5 {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    color: #3b2c24;
    font-size: 1.1em;
    line-height: 1.6;
    position: relative;
    margin-bottom: 20px;
}
.story-box-after-quote-6f6321f5 {
    font-size: 1.1em;
    line-height: 1.8;
    color: #5a4b43;
}
.story-box-image-6f6321f5 img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Ensure Text is Left and Image is Right even in RTL */
html[dir="rtl"] .story-box-wrapper-6f6321f5 {
    /* If we strictly want text on left and image on right in RTL */
    flex-direction: row-reverse;
}
html[dir="rtl"] .story-box-wrapper-6f6321f5 .story-box-content-6f6321f5 {
    text-align: right;
}