.quote.blue {
    background-color: var(--medium-blue);
}

.quote--container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 980px;
}

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

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

.quote .name-infos {
    display: flex;
    gap: 16px;
    align-items: center;
}

.quote .name-infos--img {
    height: 64px;
    width: 64px;
    border-radius: 64px;
    overflow: hidden;
}

.quote .name-infos--img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

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

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

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

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