/* BREAKPOINT */
/* BLOC QUOTE IMG */
.quote-img {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    .quote-img {
        align-items: center;
    }
}

@media screen and (min-width: 1025px) {
    .quote-img {
        flex-direction: row;
        align-items: flex-end;
        gap: 0;
    }

    .quote-img>div {
        flex: 1;
    }
}

@media screen and (min-width: 1025px) {
    .quote-img--content {
        max-width: 604px;
    }
}

.quote-img--content img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

@media screen and (min-width: 1025px) {
    .quote-img--content img {
        height: 760px;
    }
}

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

.quote-img--quote-container::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url("../images/icon/right-quote.svg");
    background-size: contain;
    background-position: center;
    margin-bottom: -16px;
}

@media screen and (min-width: 1025px) {
    .quote-img--quote-container::before {
        margin-bottom: -40px;
    }
}

@media screen and (min-width: 1025px) {
    .quote-img--quote-container {
        gap: 56px;
        padding: 80px 80px 0;
        background: var(--white);
        margin-left: -80px !important;
    }
}

.quote-img--quote {
    display: flex;
    flex-direction: column;
}

.quote-img--quote-inner {
    font-family: var(--silka);
    font-style: italic;
    font-weight: 200;
    font-size: 1.25rem;
    line-height: 150%;
    color: var(--black);
}

@media screen and (min-width: 1025px) {
    .quote-img--quote-inner {
        font-size: 1.625rem;
    }
}

.quote-img--quote h2 {
    margin-bottom: 32px;
}

@media screen and (min-width: 1025px) {
    .quote-img--quote h2 {
        text-align: right;
        padding-right: 80px;
        margin-bottom: 0;
    }
}

.quote-img--quote-infos {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: var(--silka);
}

@media screen and (min-width: 1025px) {
    .quote-img--quote-infos {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}

.quote-img--quote-infos .name {
    font-weight: 600;
    font-size: 1rem;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.quote-img--quote-infos .entitled {
    font-weight: 400;
    font-size: 0.75rem;
    font-style: italic;
    line-height: normal;
    color: var(--darkgrey);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* // BLOC QUOTE IMG */