/* ── Blockquote Cards ── */

.c-blockquote-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card */
.c-blockquote-cards__card {
    margin: 0;
    padding: 2.0rem;
    background-color: #faf8f580;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
}

/* Decorative quote mark — font-romantic style */
.c-blockquote-cards__mark {
    font-family: var(--e-global-typography-secondary-font-family);
    font-size: 3.75rem;
    font-style: italic;
    line-height: 1;
    color: #b9956a4d;
    margin-bottom: 0.5rem;
    user-select: none;
}

/* Quote text */
.c-blockquote-cards__quote {
    margin: 0;
    font-family: var(--e-global-typography-text-font-family, 'Inter', sans-serif);
    font-style: italic;
    font-size: 0.9375rem;
    line-height: 1.625;
    flex: 1;
    color: #7c695a;
}

/* Footer / attribution */
.c-blockquote-cards__footer {
    margin-top: 1.5rem;
    border-top: 1px solid #d6cdc2;
    padding-top: 1rem;
}

.c-blockquote-cards__author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-style: normal;
}

.c-blockquote-cards__author-name {
    font-family: var(--e-global-typography-primary-font-family, 'Libre Baskerville', serif);
    font-size: 1rem;
    line-height: 1.5;
    color: #2b2b2b;
}

.c-blockquote-cards__author-role {
    font-family: var(--e-global-typography-text-font-family, 'Inter', sans-serif);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: .25rem;
    color: #7c695a;
}
