.pr-section {
    margin: 48px 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 900px;
}
.pr-loading {
    display: flex; align-items: center; gap: 12px;
    color: #94a3b8; font-size: 14px; padding: 24px 0;
}
.pr-spinner {
    width: 22px; height: 22px;
    border: 2px solid #e2e8f0; border-top-color: #009ee3;
    border-radius: 50%; animation: pr-spin .7s linear infinite; flex-shrink: 0;
}
@keyframes pr-spin { to { transform: rotate(360deg); } }
.pr-error {
    padding: 14px 18px; background: #fef2f2;
    border: 1px solid rgba(220,38,38,.2); border-radius: 10px;
    font-size: 14px; color: #dc2626;
}

/* Header */
.pr-header {
    display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
    margin-bottom: 24px; padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}
.pr-title {
    font-size: 20px; font-weight: 700; color: #0f172a;
    margin: 0; display: flex; align-items: center; gap: 10px;
}
.pr-badge {
    display: inline-flex; align-items: center;
    background: #f0fdf4; color: #16a34a;
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 20px; border: 1px solid #bbf7d0;
}

/* Resumen */
.pr-summary {
    display: flex; align-items: center; gap: 32px;
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 14px; padding: 20px 24px; margin-bottom: 24px;
    flex-wrap: wrap;
}
.pr-big-rating { font-size: 52px; font-weight: 800; color: #0f172a; line-height: 1; }
.pr-stars-lg   { font-size: 22px; color: #f59e0b; letter-spacing: 2px; margin-top: 4px; }
.pr-total      { font-size: 13px; color: #64748b; margin-top: 6px; }
.pr-bars { flex: 1; min-width: 180px; }
.pr-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; font-size: 12px; }
.pr-bar-lbl  { width: 28px; text-align: right; flex-shrink: 0; color: #94a3b8; }
.pr-bar-out  { flex: 1; height: 8px; background: #e2e8f0; border-radius: 4px; overflow: hidden; }
.pr-bar-in   { height: 100%; background: #f59e0b; border-radius: 4px; transition: width .4s; }
.pr-bar-cnt  { width: 24px; flex-shrink: 0; color: #94a3b8; font-size: 12px; }

/* Grid 2 columnas */
.pr-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
}

/* Cards */
.pr-card {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.06) !important;
    box-sizing: border-box !important;
    transition: box-shadow .2s, transform .2s !important;
}
.pr-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.1) !important;
    transform: translateY(-2px) !important;
}
.pr-card-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
}
.pr-card-stars { color: #f59e0b !important; font-size: 15px !important; letter-spacing: 1px !important; }
.pr-card-source {
    font-size: 10.5px !important; color: #94a3b8 !important;
    white-space: nowrap !important; background: #f8fafc !important;
    padding: 2px 8px !important; border-radius: 20px !important;
    overflow: hidden !important; text-overflow: ellipsis !important;
    max-width: 120px !important; border: 1px solid #e2e8f0 !important;
}
.pr-card-title {
    font-weight: 600 !important; font-size: 14px !important;
    color: #0f172a !important; margin: 0 !important;
}
.pr-card-body {
    font-size: 13.5px !important; color: #475569 !important;
    line-height: 1.6 !important; margin: 0 !important; flex: 1 !important;
}
.pr-read-more {
    display: inline-block !important;
    margin-top: 6px !important;
    font-size: 12px !important;
    color: #009ee3 !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    font-family: inherit !important;
    text-decoration: none !important;
    box-shadow: none !important;
    font-weight: 500 !important;
}
.pr-read-more:hover { color: #0077b6 !important; text-decoration: underline !important; }
.pr-card-meta {
    font-size: 11.5px !important; color: #94a3b8 !important;
    display: flex !important; align-items: center !important; gap: 6px !important;
    border-top: 1px solid #f1f5f9 !important; padding-top: 10px !important;
    margin-top: auto !important;
}

.pr-no-reviews {
    text-align: center; padding: 40px 20px; color: #94a3b8;
    font-size: 14px; background: #f8fafc;
    border-radius: 12px; border: 1px dashed #e2e8f0;
    grid-column: 1 / -1;
}
.pr-footer { margin-top: 20px; text-align: right; font-size: 12px; color: #94a3b8; }
.pr-footer a { color: #009ee3; text-decoration: none; }
.pr-footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .pr-summary { flex-direction: column !important; gap: 16px !important; }
    .pr-big-rating { font-size: 40px !important; }
    .pr-grid { grid-template-columns: 1fr !important; }
}
