/* ======================================================================
   PARTIAL — REVIEW CARD
   Prefix: .rc-
   ====================================================================== */

.rc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
    position: relative;
    isolation: isolate;
}
.rc:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lt);
}

/* Köşede tırnak işareti dekoratif */
.rc::before {
    content: """;
    position: absolute;
    top: -8px;
    inset-inline-end: var(--sp-4);
    font-size: 56px;
    line-height: 1;
    color: var(--primary-lt);
    font-family: var(--font-display);
    z-index: -1;
    user-select: none;
}

.rc-header {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
}

.rc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
    flex-shrink: 0;
}

.rc-meta {
    flex: 1;
    min-width: 0;
}

.rc-name {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}

.rc-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    align-items: center;
    margin-top: 4px;
}

.rc-date {
    font-size: var(--fs-xs);
    color: var(--text-soft);
}

.rc-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    background: #ecfdf5;
    color: #047857;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-full);
    border: 1px solid #d1fae5;
}
.rc-verified svg {
    width: 11px;
    height: 11px;
}

.rc-source {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: var(--bg-soft);
    color: var(--text-muted);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

/* ─────────── Stars ─────────── */

.rc-stars {
    display: flex;
    gap: 2px;
}

.rc-star {
    width: 16px;
    height: 16px;
    color: var(--border-strong, #d1d5db);
}
.rc-star.is-on {
    color: #f59e0b;
}

/* ─────────── Text ─────────── */

.rc-text {
    margin: 0;
    font-size: var(--fs-sm);
    color: var(--text);
    line-height: var(--lh-relaxed);
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
