/* 커뮤니티 필터 */
.comm-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; gap: 1rem; }
.comm-cats { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* 게시글 목록 */
.post-list { display: flex; flex-direction: column; gap: 0.75rem; }
.post-card { padding: 1.25rem; text-decoration: none; color: inherit; display: block; }
.post-card:hover { border-color: var(--primary); }
.post-card-top { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.post-cat { font-size: 0.75rem; font-weight: 700; color: var(--primary); background: var(--bg-soft); padding: 2px 8px; border-radius: 6px; }
.post-date { font-size: 0.8rem; color: var(--text-muted); }
.post-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.post-preview { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.post-card-meta { display: flex; justify-content: space-between; margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-muted); }
.post-stats { display: flex; gap: 0.5rem; }

/* 게시글 상세 */
.post-detail-card { padding: 2rem; }
.post-detail-top { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.post-detail-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.post-detail-author { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.post-detail-body { line-height: 1.8; font-size: 0.95rem; white-space: pre-line; }
.post-detail-actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.post-detail-comments { font-size: 0.85rem; color: var(--text-muted); }

/* 댓글 */
.comment-section { margin-top: 1.5rem; }
.comment-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.comment-item { padding: 1rem; border: 1px solid var(--border-light); border-radius: 12px; margin-bottom: 0.5rem; }
.comment-meta { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.comment-author { font-weight: 600; font-size: 0.85rem; }
.comment-date { font-size: 0.8rem; color: var(--text-muted); }
.comment-body { font-size: 0.9rem; line-height: 1.6; }
.comment-form { margin-top: 1rem; }
.comment-form-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }

/* 익명 토글 */
.comm-anon-toggle { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); cursor: pointer; }

/* 반응형 */
@media (max-width: 768px) {
    .comm-top { flex-direction: column; align-items: flex-start; }
}
