.rv-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}
.rv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text, #e8e0d4);
    margin: 0 0 1.5rem;
}
.rv-count {
    font-size: .82rem;
    color: var(--text-muted, #8a8078);
    margin-bottom: 1.5rem;
}

.rv-card {
    display: flex;
    gap: 1rem;
    background: var(--bg-card, #1e1e1e);
    border: 1px solid var(--border, #2a2a2a);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: .75rem;
    transition: border-color .2s;
}
.rv-card:hover {
    border-color: var(--gold, #c9a96e);
}

.rv-photo {
    flex-shrink: 0;
    width: 70px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border, #2a2a2a);
}
.rv-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rv-photo a {
    display: block;
    width: 100%;
    height: 100%;
}

.rv-body {
    flex: 1;
    min-width: 0;
}
.rv-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .4rem;
}
.rv-anketa-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem;
    color: var(--gold, #c9a96e);
    text-decoration: none;
    font-weight: 600;
}
.rv-anketa-name:hover {
    text-decoration: underline;
}
.rv-stars {
    font-size: .8rem;
    letter-spacing: 1px;
}
.rv-stars .filled { color: #f0c040; }
.rv-stars .star { color:#ffc107; }
.rv-date {
    font-size: .7rem;
    color: var(--text-muted, #666);
    margin-left: auto;
}
.rv-author {
    font-size: .75rem;
    color: var(--text-muted, #8a8078);
    margin-bottom: .3rem;
}
.rv-text {
    font-size: .82rem;
    color: var(--text, #e8e0d4);
    line-height: 1.5;
}

.rv-pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
}
.rv-pagination a,
.rv-pagination span {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: .82rem;
    text-decoration: none;
    transition: all .2s;
}
.rv-pagination a {
    background: var(--bg-card, #1e1e1e);
    border: 1px solid var(--border, #2a2a2a);
    color: var(--text, #e8e0d4);
}
.rv-pagination a:hover {
    border-color: var(--gold, #c9a96e);
    color: var(--gold, #c9a96e);
}
.rv-pagination .current {
    background: var(--gold, #c9a96e);
    color: #111;
    font-weight: 600;
}

.rv-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted, #8a8078);
    font-size: .85rem;
}

@media (max-width: 640px) {
    .rv-card { gap: .75rem; padding: .75rem; }
    .rv-photo { width: 55px; height: 70px; }
    .rv-date { margin-left: 0; }
}
