.quote-img {
    --flex-direction: row;
}

.quote-img.reverse {
    --flex-direction: row-reverse;
}

@media screen and (min-width: 1024px) {
    .quote-img.reverse .quote-illus {
        top: 72px;
        left: auto;
        right: -30px;
        bottom: auto;
    }
}

.quote-img--container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 1024px) {
    .quote-img--container {
        flex-direction: var(--flex-direction);
        align-items: center;
    }
}

@media screen and (min-width: 1280px) {
    .quote-img--container {
        gap: 80px;
    }
}

.quote-img--content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 1024px) {
    .quote-img--content {
        padding: 48px 0;
        flex-basis: 50%;
    }
}

.quote-img--content blockquote p {
    color: var(--accent-1);
    font-family: var(--aileron);
    font-size: 1.875rem;
    font-style: italic;
    font-weight: 400;
    line-height: 140%;
}

@media screen and (min-width: 1024px) {
    .quote-img--content blockquote p {
        font-size: 2.25rem;
    }
}

.quote-img--content .name-infos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-img--content .name-infos .name {
    color: var(--accent-3);
    font-family: var(--aileron);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.quote-img--content .name-infos .function {
    color: var(--accent-2);
    font-family: var(--aileron);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
}

.quote-img--images {
    height: 350px;
    border-radius: 16px;
    position: relative;
}

@media screen and (min-width: 1024px) {
    .quote-img--images {
        border-radius: 24px;
        flex-basis: 50%;
        min-height: 550px;
    }
}

.quote-img--images img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

@media screen and (min-width: 1024px) {
    .quote-img--images img {
        border-radius: 24px;
    }
}

.quote-img--images .quote-illus {
    position: absolute;
    top: -16px;
    right: 16px;
    height: 68px;
    width: auto;
    border-radius: unset;
}

@media screen and (min-width: 1024px) {
    .quote-img--images .quote-illus {
        top: auto;
        right: auto;
        height: 88px;
        bottom: 72px;
        left: -86px;
    }
}