        /* Page-specific styles only - common styles are in dashboard-common.css */

        /* Post composer enhancements */
        .post-composer-toolbar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        .composer-tool-btn {
            background: none;
            border: 1px solid var(--card-border);
            border-radius: 6px;
            padding: 0.375rem 0.625rem;
            cursor: pointer;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.8125rem;
        }
        .composer-tool-btn:hover { background: var(--surface-2); color: var(--text-primary); }

        /* Character counter */
        .char-counter {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-align: right;
            margin-top: -0.5rem;
            margin-bottom: 0.5rem;
        }
        .char-counter.warning { color: var(--warning); }
        .char-counter.danger { color: var(--danger); font-weight: 600; }

        /* Media preview */
        .media-preview-area {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        .media-preview-area:empty { display: none; }
        .media-thumb {
            position: relative;
            width: 80px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid var(--card-border);
        }
        .media-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .media-thumb-remove {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 20px;
            height: 20px;
            background: rgba(0,0,0,0.6);
            color: var(--accent-fg);
            border: none;
            border-radius: 50%;
            font-size: 0.75rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        /* Link preview card (composer) */
        .link-preview-card {
            border: 1px solid var(--card-border);
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 0.75rem;
            background: var(--surface-2);
        }
        .link-preview-card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
        }
        .link-preview-card .lp-body {
            padding: 0.75rem;
        }
        .link-preview-card .lp-domain {
            font-size: 0.6875rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-bottom: 0.25rem;
        }
        .link-preview-card .lp-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
            line-height: 1.3;
        }
        .link-preview-card .lp-desc {
            font-size: 0.75rem;
            color: var(--text-secondary);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .link-preview-card .lp-close {
            float: right;
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 0.25rem;
            font-size: 1rem;
        }

        /* Post media in feed */
        .post-media-gallery {
            display: grid;
            gap: 4px;
            border-radius: 8px;
            overflow: hidden;
            margin: 0.75rem 0;
        }
        .post-media-gallery.single { grid-template-columns: 1fr; }
        .post-media-gallery.double { grid-template-columns: 1fr 1fr; }
        .post-media-gallery.triple { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
        .post-media-gallery.triple .media-gallery-item:first-child { grid-row: 1 / 3; }
        .post-media-gallery.quad { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
        .post-media-gallery .media-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }
        .post-media-gallery.single .media-gallery-item img { max-height: 400px; object-fit: contain; background: var(--hover-bg); }
        .post-media-gallery:not(.single) .media-gallery-item img { height: 200px; }

        /* Link preview in feed */
        .feed-link-preview {
            border: 1px solid var(--card-border);
            border-radius: 8px;
            overflow: hidden;
            margin: 0.75rem 0;
            cursor: pointer;
            transition: box-shadow var(--dur-fast) var(--ease);
        }
        .feed-link-preview:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
        .feed-link-preview img { width: 100%; height: 160px; object-fit: cover; }
        .feed-link-preview .flp-body { padding: 0.75rem; }
        .feed-link-preview .flp-domain { font-size: 0.6875rem; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 0.25rem; }
        .feed-link-preview .flp-title { font-size: 0.875rem; font-weight: 500; color: var(--text-primary); margin-bottom: 0.25rem; }
        .feed-link-preview .flp-desc { font-size: 0.75rem; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        /* Repost card */
        .repost-label {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.8125rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--surface-3);
        }
        .repost-embedded {
            border: 1px solid var(--card-border);
            border-radius: 8px;
            padding: 1rem;
            margin: 0.5rem 0;
            background: var(--surface-2);
        }
        .repost-embedded .post-header { margin-bottom: 0.5rem; }

        /* Share modal */
        .share-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.4);
            z-index: 5000;
            align-items: center;
            justify-content: center;
        }
        .share-modal-overlay.show { display: flex; }
        .share-modal {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            width: 90%;
            max-width: 380px;
        }
        .share-modal h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .share-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            border-radius: 6px;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            font-size: 0.875rem;
            font-weight: 500;
            text-align: left;
        }
        .share-option:hover { background: var(--hover-bg); }
        .share-option svg { flex-shrink: 0; }

        /* ===== First run: checklist and suggestions (Sep 2026) ===== */
        /* display:flex would outrank the browser's [hidden] rule and paint an
           empty box; say it explicitly. */
        .setup-card[hidden], .why-verify[hidden] { display: none; }
        .setup-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--card-radius);
            padding: 20px;
            margin-bottom: var(--stack-gap);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .setup-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
        .setup-head h2 { margin: 0 0 4px; font-size: var(--text-lg); font-weight: 600; line-height: 1.3; }
        .setup-head p { margin: 0; font-size: var(--text-sm); color: var(--text-body); }
        .setup-count { font-size: var(--text-xs); color: var(--text-secondary); white-space: nowrap; padding-top: 4px; }
        .setup-bar { height: 4px; border-radius: 2px; background: var(--card-border); overflow: hidden; }
        .setup-bar span { display: block; height: 100%; background: var(--accent); }
        .setup-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
        .setup-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--surface-3); }
        .setup-item:last-child { border-bottom: none; }
        .setup-mark { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border-strong); flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
        .setup-item.done .setup-mark { background: var(--accent); border-color: var(--accent); color: var(--accent-fg); }
        .setup-item.done .setup-label { color: var(--text-secondary); text-decoration: line-through; }
        .setup-text { flex: 1; display: flex; flex-direction: column; }
        .setup-label { font-weight: 500; }
        .setup-detail { font-size: var(--text-xs); color: var(--text-secondary); }
        .setup-action, .suggest-btn {
            height: 34px; padding: 0 14px; border: 1px solid var(--accent); border-radius: 6px;
            background: var(--card-bg); color: var(--text-primary); font: inherit; font-size: 13px; font-weight: 500;
            display: inline-flex; align-items: center; white-space: nowrap; text-decoration: none; cursor: pointer;
        }
        .setup-action:hover, .suggest-btn:hover { background: var(--hover-bg); }
        .suggest-btn[disabled] { border-color: var(--card-border); background: var(--surface-3); color: var(--text-muted); cursor: default; }
        .setup-dismiss { background: none; border: none; color: var(--text-secondary); font: inherit; font-size: var(--text-xs); cursor: pointer; align-self: flex-end; padding: 0; }
        .setup-dismiss:hover { color: var(--text-primary); text-decoration: underline; }

        .suggest-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--card-radius);
            padding: 20px;
            margin-bottom: var(--stack-gap);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .suggest-head { display: flex; align-items: center; justify-content: space-between; }
        .suggest-head h2 { margin: 0; font-size: var(--text-xs); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); }
        .suggest-head a { font-size: var(--text-xs); color: var(--text-secondary); }
        .suggest-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
        @media (max-width: 680px) { .suggest-grid { grid-template-columns: minmax(0, 1fr); } }
        .suggest-community { border: 1px solid var(--card-border); border-radius: 8px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
        .suggest-icon { width: 36px; height: 36px; border-radius: 6px; background: var(--avatar-bg); color: var(--accent-fg); display: flex; align-items: center; justify-content: center; font-weight: 600; }
        .suggest-name { font-weight: 500; }
        .suggest-meta { font-size: var(--text-xs); color: var(--text-secondary); }
        .suggest-community .suggest-text { display: flex; flex-direction: column; min-width: 0; }
        .suggest-community .suggest-btn { justify-content: center; }
        .suggest-person { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--surface-3); }
        .suggest-person:last-child { border-bottom: none; }
        .suggest-person .suggest-text { flex: 1; display: flex; flex-direction: column; min-width: 0; }
        .suggest-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--avatar-bg); color: var(--accent-fg); display: flex; align-items: center; justify-content: center; font-weight: 500; flex-shrink: 0; overflow: hidden; }
        .suggest-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .suggest-empty { font-size: var(--text-sm); color: var(--text-body); }
        .why-verify p { margin: 0 0 8px; font-size: 13px; color: var(--text-body); line-height: 1.5; }
        .why-verify a { font-size: 13px; color: var(--text-primary); }
