.forum-category-card {
    background: var(--drk-card);
    border: 1px solid var(--drk-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: box-shadow .2s;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.forum-category-card:hover { box-shadow: var(--shadow-md); }
.forum-cat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; background: var(--drk-red-light); color: var(--drk-red); flex-shrink: 0;
}
.forum-cat-info { flex: 1; min-width: 0; }
.forum-cat-info h6 { margin: 0 0 .25rem; }
.forum-cat-stats { text-align: right; flex-shrink: 0; }
.forum-cat-stats .count { font-weight: 600; font-size: 1.1rem; display: block; }

.thread-list { list-style: none; padding: 0; margin: 0; }
.thread-item {
    display: flex; align-items: center; gap: 1rem;
    padding: .85rem 1rem; border-bottom: 1px solid var(--drk-border);
    transition: background .15s;
}
.thread-item:hover { background: rgba(0,0,0,.02); }
.thread-item:last-child { border-bottom: none; }
.thread-icon { font-size: 1.2rem; color: var(--drk-muted); flex-shrink: 0; }
.thread-icon.pinned { color: var(--drk-red); }
.thread-info { flex: 1; min-width: 0; }
.thread-info h6 { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thread-info h6 a { color: var(--drk-text); text-decoration: none; }
.thread-info h6 a:hover { color: var(--drk-red); }
.thread-meta { font-size: .8rem; color: var(--drk-muted); }
.thread-stats { text-align: right; flex-shrink: 0; font-size: .85rem; color: var(--drk-muted); }

.post-card {
    background: var(--drk-card);
    border: 1px solid var(--drk-border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
}
.post-header {
    display: flex; align-items: center; gap: .75rem;
    padding: .75rem 1rem; background: #f8f9fa; border-bottom: 1px solid var(--drk-border);
}
.post-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--drk-red-light); color: var(--drk-red);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: .9rem; flex-shrink: 0;
}
.post-body { padding: 1rem; line-height: 1.7; }
.post-body p:last-child { margin-bottom: 0; }

.forum-pagination { margin-top: 1.5rem; }
