/* Forum Posts */
.forum-post-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 0.75rem;
    transition: box-shadow 0.2s;
}
.forum-post-card:hover {
    box-shadow: var(--shadow-hover);
}

.vote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}
.vote-section-lg {
    min-width: 60px;
}
.vote-btn {
    background: none;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
    font-size: 1.2rem;
    line-height: 1;
}
.vote-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.vote-btn.voted {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}
.vote-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.vote-count {
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    color: var(--text);
}

.post-content {
    flex: 1;
    min-width: 0;
}
.post-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
}
.post-title:hover {
    color: var(--primary);
}
.post-body {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.post-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.8rem;
}

/* Post Detail */
.forum-post-detail {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}
.post-full-body {
    font-size: 1rem;
    line-height: 1.7;
}

/* Responses */
.response-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 1rem;
    border: 1px solid var(--border);
}
.linked-listing {
    display: inline-block;
    background: rgba(26,83,92,0.06);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}
.linked-listing:hover {
    background: rgba(26,83,92,0.12);
}

.response-form {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}
