/* Extracted from forum.php */
.forum-shell{padding:2rem 0 3rem}
.forum-layout{display:grid;grid-template-columns:minmax(280px,.8fr) minmax(0,1.5fr);gap:1.5rem}
.forum-panel{background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:1.35rem;box-shadow:var(--shadow-sm)}
.forum-hero{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;margin-bottom:1.2rem}
.forum-hero h1{margin:0;font-size:2rem;font-family:var(--font-display)}
.forum-hero p{margin:.5rem 0 0;color:var(--text-secondary);max-width:60ch}
.forum-post-list{display:flex;flex-direction:column;gap:.85rem}
.forum-post-link{display:block;padding:1rem 1.05rem;border-radius:8px;border:1px solid var(--border);background:var(--surface);color:inherit}
.forum-post-link.active,.forum-post-link:hover{border-color:var(--primary);background:var(--surface-muted);color:inherit}
.forum-post-link h3{margin:0 0 .4rem;font-size:1rem;line-height:1.35}
.forum-post-meta{display:flex;align-items:center;gap:.6rem;flex-wrap:wrap;color:var(--text-muted);font-size:.8rem}
.forum-post-excerpt{margin:.55rem 0 0;color:var(--text-secondary);font-size:.88rem;line-height:1.55}
.forum-composer{display:grid;gap:.8rem;margin-top:1rem}
.forum-composer input,.forum-composer textarea{width:100%;padding:.9rem 1rem;border-radius:8px;border:1px solid var(--border);background:var(--surface);color:var(--text)}
.forum-thread-head{padding-bottom:1rem;border-bottom:1px solid var(--border);margin-bottom:1rem}
.forum-thread-head h2{margin:0 0 .55rem;font-size:1.6rem}
.forum-thread-body{color:var(--text-secondary);line-height:1.8;white-space:pre-wrap}
.forum-thread-replies{display:flex;flex-direction:column;gap:1rem;margin-top:1.2rem}
.forum-reply-card{display:flex;gap:.85rem;padding:1rem;border-radius:8px;background:var(--surface);border:1px solid var(--border)}
.forum-avatar,.forum-avatar-placeholder{width:42px;height:42px;border-radius:50%;object-fit:cover;flex:0 0 42px}
.forum-avatar-placeholder{display:flex;align-items:center;justify-content:center;background:var(--surface-muted);color:var(--text);font-weight:700}
.forum-reply-copy{min-width:0}
.forum-reply-copy strong{display:block;margin-bottom:.15rem}
.forum-reply-copy p{margin:.55rem 0 0;color:var(--text-secondary);line-height:1.7;white-space:pre-wrap}
.forum-empty-state{color:var(--text-muted);padding:2rem 1rem;text-align:center}
.forum-mini-head{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1rem}
@media(max-width:980px){.forum-layout{grid-template-columns:1fr}.forum-hero{flex-direction:column}}
