/* Quote Vote — minimal layout, matches site tokens */

.qv-grid{
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: clamp(12px, 2vw, 18px);
    align-items: stretch;
}

.qv-card{
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 160px;                  /* room for longer quotes */
    max-height: none;                   /* allow to grow */
}

.qv-text{
    margin: 0;
    color: var(--ink-strong);
    font-size: clamp(16px, 2.2vw, 20px);
    line-height: 1.6;
    white-space: normal;                /* wrap text */
    word-break: break-word;             /* avoid overflow on long tokens */
    overflow-wrap: anywhere;            /* extra safety */
}

.qv-choose{
    margin-top: .6rem;
    justify-self: start;                /* use your wiki-cta visuals */
}

.qv-vs{
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: .12em;
    color: var(--ink-dim);
}

.qv-status{
    margin-top: .5rem;
    color: var(--ink-dim);
}