/* BREAKPOINT */
/* bloc-quote */
.quote {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 1281px) {
    .quote {
        flex-direction: row;
        align-items: center;
        gap: 200px;
        padding: 0 80px;
    }

    .quote>div {
        flex: 1;
    }
}

.quote--content p:not(:last-of-type) {
    margin-bottom: 32px;
}

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

@media screen and (min-width: 1025px) {
    .quote--quote {
        gap: 56px;
    }
}

.quote--quote::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--quote::before {
        margin-bottom: -40px;
    }
}

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

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

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

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

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

.quote--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;
}

@media screen and (min-width: 1025px) {
    .quote .mob {
        display: none;
    }
}

.quote .desk {
    display: none;
}

@media screen and (min-width: 1025px) {
    .quote .desk {
        display: flex;
        margin-top: 56px;
    }
}

@media screen and (min-width: 1025px) {
    .quote.actu.container.m {
        padding: 0 0 0 80px;
    }
}

.quote.actu .quote--quote-infos {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.quote.actu .quote--quote-infos .name {
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.quote.actu .quote--quote-infos .entitled {
    letter-spacing: 1.2px;
}

/* // bloc-quote */