/* Template 3 — Minimal List / Badge */
.rw-tpl3 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    overflow: hidden;
    max-width: 540px;
    margin: 0 auto;
}
.rw-tpl3 .rw-badge {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid #e5e5e5;
}
/*.rw-tpl3 .rw-badge .rw-g {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; border: 1px solid #e5e5e5;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; color: #4285f4;
    flex-shrink: 0;
}*/

.rw-tpl3 .rw-badge .rw-g {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    background-image: url("../../assets/img/g-logo.png");
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.rw-tpl3 .rw-badge .rw-meta-num { font-size: 22px; font-weight: 700; color: #111; line-height: 1.1; }
.rw-tpl3 .rw-badge .rw-meta-sub { font-size: 12px; color: #666; margin-top: 2px; }

.rw-tpl3 .rw-list { list-style: none; padding: 0; margin: 0; }
.rw-tpl3 .rw-item {
    display: flex; gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.rw-tpl3 .rw-item:last-child { border-bottom: 0; }
.rw-tpl3 .rw-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0; background: #f0f0f0;
}
.rw-tpl3 .rw-avatar-fallback {
    display: flex; align-items: center; justify-content: center;
    background: #111; color: #fff;
    font-size: 13px; font-weight: 700;
}
.rw-tpl3 .rw-body { flex: 1; min-width: 0; }
.rw-tpl3 .rw-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.rw-tpl3 .rw-name { font-size: 13px; font-weight: 600; color: #111; }
.rw-tpl3 .rw-time { font-size: 11px; color: #888; flex-shrink: 0; }
.rw-tpl3 .rw-rating-line { margin-bottom: 4px; }
.rw-tpl3 .rw-text {
    font-size: 13px; line-height: 1.55; color: #333;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
    overflow: hidden;
}
.rw-tpl3 .rw-cta-wrap { padding: 0 20px 16px; margin-top: 0; border-top: 1px solid #f0f0f0; padding-top: 16px; }
