/* Canonical thread component — matches the read.html reader so every thread-like
   page (forum reader, Casino Watch report) shares ONE look. No coloured side-borders. */
.thread-crumb{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--orange);margin:2px 0 12px}
.thread-crumb:hover{color:var(--ink)}
.thread-tags{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:9px}
.thread-h1{font-family:var(--display);font-weight:700;font-size:30px;line-height:1.12;letter-spacing:-.02em;margin:0 0 8px;color:var(--ink)}
.thread-sub{font-size:13px;color:var(--ink-soft);margin:0 0 16px}
.thread-sub b{color:var(--ink)}

.avatar{width:34px;height:34px;border-radius:50%;background:var(--blue-tint);color:var(--blue);display:grid;place-items:center;font-family:var(--display);font-weight:800;font-size:14px;flex:0 0 auto}
img.avatar{object-fit:cover}

.thread-card{background:var(--card);border:1px solid var(--line);border-radius:var(--r);padding:22px 24px;box-shadow:var(--shadow)}
.thread-card .op-card{padding:0 0 16px;margin:0 0 16px;border-bottom:1px solid var(--line)}
.op-head{display:flex;align-items:center;gap:11px;margin-bottom:14px}
.op-head .nm{font-weight:700;color:var(--ink)}
.op-head .dt{font-size:12.5px;color:var(--ink-faint)}
.thread-card .op-card p{font-size:18px;font-weight:500;line-height:1.62;color:var(--ink);margin:0 0 12px}
.thread-card .op-card p:last-child{margin-bottom:0}
.replies-h{font-size:14px;font-weight:700;color:var(--ink-soft);text-transform:uppercase;letter-spacing:.06em;margin:0 2px 12px}
.thread-replies{margin:0 0 0 1px;padding-left:16px;border-left:3px solid var(--line)}
.thread-replies>.rnode+.rnode{border-top:1px solid var(--line)}
.rnode .reply{display:flex;gap:13px;padding:11px 0 10px}
.reply .avatar{width:30px;height:30px;font-size:12px}
.reply .rb{flex:1;min-width:0}
.reply .rhead{display:flex;align-items:baseline;gap:9px;flex-wrap:wrap;margin-bottom:4px}
.reply .rhead .nm{font-weight:700;font-size:14px;color:var(--ink)}
.reply .rhead .dt{font-size:11.5px;color:var(--ink-faint)}
.reply p{font-size:14.5px;line-height:1.6;margin:0 0 8px;color:var(--ink-soft)}
.reply p:last-child{margin-bottom:0}
.reply-badge{font-size:9.5px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;padding:2px 8px;border-radius:6px;background:var(--paper-2);color:var(--ink-soft)}
.reply-badge.op{background:var(--blue-tint);color:var(--blue)}
.reply-badge.operator{background:#1C7A4C;color:#fff}

/* new-reply appear animation (shared: reader inline composer + Casino Watch/guide bottom form) */
.reply.is-new{animation:replyIn .42s ease both}
@keyframes replyIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
@media (prefers-reduced-motion:reduce){.reply.is-new{animation:none}}
