/* Template 1 — Card Grid */
.rw-tpl1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.rw-tpl1 .rw-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rw-tpl1 .rw-head { display: flex; align-items: center; gap: 10px; }
.rw-tpl1 .rw-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: #f0f0f0; flex-shrink: 0; object-fit: cover;
}
.rw-tpl1 .rw-avatar-fallback {
    display: flex; align-items: center; justify-content: center;
    background: #111; color: #fff;
    font-size: 14px; font-weight: 700;
}
.rw-tpl1 .rw-name { font-weight: 600; font-size: 14px; color: #111; line-height: 1.3; }
.rw-tpl1 .rw-time { font-size: 12px; color: #888; }
.rw-tpl1 .rw-text {
    font-size: 13px; line-height: 1.55; color: #333;
    display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical;
    overflow: hidden;
}
.rw-tpl1 .rw-google {
    margin-top: auto; padding-top: 8px;
    font-size: 11px; color: #888; display: flex; align-items: center; gap: 4px;
}
