.story-wrapper {
    width: 100%;
    /* max-width: 1200px; */
    padding: 20px 5%;
    font-family: 'Playfair Display', serif;
    margin: 30px auto 0;
}

.story {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.story-text {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 2;
}

.story-image{
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
}

.other-images {
    width: 100%;
    max-width: 275px;
    height: auto;
    border-radius: 20px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15), -3px -3px 10px rgba(0, 0, 0, 0.15) ;
}

.ecuador-image{
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15), -3px -3px 10px rgba(0, 0, 0, 0.15) ;
}




@media (max-width: 768px) {
    .story {
        flex-direction: column;
        justify-content: space-evenly;
        gap: 10px;
    }


    .story-image{
        order: 1;
        width: 100%;
        margin-bottom: 10px;
        justify-content: center;
    }

    .story-text {
        order: 2;
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
    }

    img {
        width: 100%;
        max-width: 400px;
    }
}