
/* User Community Page */
.community-post-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.community-post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.community-post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.community-post-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}
.community-post-meta {
    flex: 1;
}
.community-post-name {
    font-weight: 600;
    font-size: 0.95rem;
}
.community-post-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.community-post-content {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.community-post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.community-tag {
    padding: 0.25rem 0.6rem;
    background: var(--hover-bg);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--primary);
}
.community-post-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}
.community-stat-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}
.community-stat-btn:hover {
    color: var(--primary);
}
.create-post-card {
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.create-post-card:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}
.create-post-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hover-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
}
@media (max-width: 640px) {
    .community-post-card { padding: 1rem; }
    .community-post-stats { gap: 1rem; }
}
