/* ── Community Page ────────────────────────────────────────────── */
.comm-layout { display:grid; grid-template-columns:220px 1fr; gap:24px; align-items:start; }
.comm-sidebar { position:sticky; top:90px; }
.comm-cat-btn { display:block; width:100%; text-align:left; background:none; border:none; color:var(--sand); font-family:'Oxanium',sans-serif; font-size:0.84rem; letter-spacing:0.06em; padding:10px 14px; cursor:pointer; border-radius:2px; transition:background 0.15s,color 0.15s; }
.comm-cat-btn:hover { background:rgba(232,184,75,0.08); color:var(--gold); }
.comm-cat-btn.active { background:rgba(232,184,75,0.12); color:var(--gold); border-left:3px solid var(--gold); }
.comm-cat-label { font-size:0.68rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--sand); padding:10px 14px 4px; opacity:0.6; }
.post-card { background:#1E2F42; border:1px solid rgba(255,255,255,0.06); border-radius:3px; padding:16px 20px; margin-bottom:10px; cursor:pointer; transition:border-color 0.15s,box-shadow 0.15s; }
.post-card:hover { border-color:rgba(232,184,75,0.3); box-shadow:0 2px 12px rgba(232,184,75,0.08); }
.post-card.pinned { border-left:3px solid var(--gold); }
.post-title { font-size:0.98rem; font-weight:600; color:#ffffff; margin-bottom:4px; }
.post-meta { font-size:0.75rem; color:var(--sand); display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.post-cat-badge { display:inline-block; font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase; padding:2px 8px; border-radius:2px; background:rgba(232,184,75,0.12); color:var(--gold); }
.post-locked-badge { display:inline-block; font-size:0.68rem; padding:2px 7px; border-radius:2px; background:rgba(224,92,92,0.15); color:#E05C5C; }
.post-pinned-badge { display:inline-block; font-size:0.68rem; padding:2px 7px; border-radius:2px; background:rgba(232,184,75,0.15); color:var(--gold); }
.reply-card { background:#162636; border-left:3px solid rgba(255,255,255,0.08); padding:14px 18px; margin-bottom:8px; border-radius:0 3px 3px 0; }
.reply-card:first-child { border-left-color:var(--gold); }
.comm-textarea { width:100%; box-sizing:border-box; min-height:100px; resize:vertical; }
.back-btn { background:none; border:none; color:var(--sand); font-family:'Oxanium',sans-serif; font-size:0.82rem; cursor:pointer; padding:0; display:flex; align-items:center; gap:6px; margin-bottom:18px; transition:color 0.15s; }
.back-btn:hover { color:var(--gold); }
.comm-header-bar { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; flex-wrap:wrap; gap:12px; }
.username-badge { display:inline-block; font-size:0.75rem; font-weight:700; padding:2px 8px; border-radius:2px; background:rgba(232,184,75,0.12); color:var(--gold); letter-spacing:0.06em; }
.mod-actions { display:flex; gap:8px; margin-top:10px; }

/* ── Light theme overrides ─────────────────────────────────────── */
body[data-theme="light"] .post-card { background:#ffffff; border-color:rgba(13,27,42,0.1); }
body[data-theme="light"] .post-title { color:#0D1B2A; }
body[data-theme="light"] .reply-card { background:#f4f7fa; }
body[data-theme="light"] .comm-cat-btn { color:#3A5570; }
body[data-theme="light"] .comm-sidebar { background:transparent; }
