/** BLOC 14 — Citation / Témoignage (Figma node 1470:5339) */
.section-quote__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
}

/* Guillemet décoratif : 120px bold vert accent */
.section-quote__mark {
    font-size: 120px;
    line-height: 0.85;
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-body, inherit);
    margin: 0;
    user-select: none;
}

/* Texte citation : 24px semibold noir (pas italic, pas body-lg) */
.section-quote__text {
    font-size: 24px;
    line-height: 1.4;
    font-weight: var(--font-weight-semibold);
    font-style: normal;
    color: inherit;
    margin: 0;
    border: none;
    padding: 0;
    max-width: 1120px;
}

/* Separator 88×1 vert accent sur tous les fonds (spécifique BLOC citation) */
.section-quote__separator {
    display: block;
    width: 88px;
    height: 1px;
    background-color: var(--color-accent);
    margin: 0;
}

/* Bloc auteur : name 18px bold + role 14px regular, noir */
.section-quote__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}
.section-quote__author-name {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: inherit;
    line-height: 1.3;
}
.section-quote__author-role {
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    color: inherit;
    line-height: 1.3;
}

