.quote-large {
    position: relative;
    padding: 56px 16px;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .quote-large {
        padding: 120px 200px 120px 80px;
    }
}

@media screen and (min-width: 1280px) {
    .quote-large {
        padding: 120px 80px;
    }
}

.quote-large--container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 1;
}

.quote-large--container h3 {
    color: var(--white);
    font-family: var(--kanit);
    font-size: 32px;
    font-style: italic;
    font-weight: 900;
    line-height: 130%;
    /* 41.6px */
    text-transform: uppercase;
    max-width: 1160px;
}

@media screen and (min-width: 1024px) {
    .quote-large--container h3 {
        font-size: 56px;
    }
}

.quote-large--container .author {
    color: var(--green-light);
    font-family: var(--asap);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    padding-left: 32px;
    border-left: 3px solid var(--green-light);
}

.quote-large--image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.quote-large--image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.quote-large--picto {
    position: absolute;
    right: -116px;
    top: -108px;
    background: url(../images/feuille.svg) no-repeat center;
    background-size: contain;
    width: 207px;
    height: 225px;
}

@media screen and (min-width: 1024px) {
    .quote-large--picto {
        width: 354px;
        height: 384px;
        right: -116px;
        top: -143px;
    }
}