/* ══════════════════════════════════════════
   SA Social Proof Card — Frontend Styles
   ══════════════════════════════════════════ */

.sa-spc-wrap {
    display: flex;
}

/* ── Card ── */
.sa-spc-card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #3b47c9;
    border-radius: 100px;
    padding: 12px 20px 12px 16px;
    max-width: 100%;
}

/* ── Avatars ── */
.sa-spc-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.sa-spc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid #3b47c9;
    display: block;
    flex-shrink: 0;
}

.sa-spc-avatar + .sa-spc-avatar {
    margin-left: -12px;
}

/* ── Content ── */
.sa-spc-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

/* ── Rating row ── */
.sa-spc-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Stars ── */
.sa-spc-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.sa-spc-star {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sa-spc-star svg {
    width: 20px;
    height: 20px;
    display: block;
}

.sa-spc-star-fill svg {
    fill: #ffffff;
}

.sa-spc-star-empty svg {
    fill: rgba(255, 255, 255, 0.30);
}

/* ── Rating pill ── */
.sa-spc-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Label ── */
.sa-spc-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}
