.quote__wrapper_outer {
    max-width: var(--module-wrapper-width);
    margin: 45px 10px;
    background-color: var(--default-light-greyblue);
    display: flex;
    justify-content: space-between;

}
.quote__textcontent_wrapper {
    display: flex;
    flex-basis: 70%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px;
    flex-grow: 1;
}
.quote__text {
    font-family: var(--default-font-medium);
    font-size: var(--font-size-header-small);
    padding: 15px;
    text-align: center;
}


.quote__author {
    font-family: var(--default-font);
    font-size: var(--font-size-text);
    padding: 15px;
}


.quote__image_wrapper {
    min-height: 100%;
    flex-basis: 30%;
}

.quote__image_wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


@media screen and (max-width: 768px) {
    .quote__wrapper_outer {
        flex-direction: column-reverse;
        align-items: center;
    }

    .quote__textcontent_wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 20px 50px;
    }
    .quote__text {
        font-size: var(--font-size-subheader);
    }
}