/* © 2025 VEX LLC. All rights reserved. */
/* ===================================================================
   COMMUNITY.CSS - Social Feed, Post Cards
   =================================================================== */

        /* Community */
        .post-card { background: white; border-radius: 16px; margin-bottom: 12px; overflow: hidden;
            box-shadow: 0 2px 8px var(--shadow); }
        .post-header { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
        .post-avatar { width: 40px; height: 40px; border-radius: 20px; background: var(--bg);
            display: flex; align-items: center; justify-content: center; font-size: 20px; }
        .post-user { font-weight: 600; font-size: 14px; }
        .post-time { font-size: 11px; color: var(--text-light); }
        .post-content { padding: 0 14px 12px; font-size: 14px; line-height: 1.5; }
        .post-media { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
        .post-actions { display: flex; gap: 20px; padding: 12px 14px; border-top: 1px solid var(--border); }
        .post-action { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); cursor: pointer; }
        .post-action.liked { color: var(--danger); }
