/**
 * Post Type Indicators - Repost & Community
 * Location: /public_html/posts/assets/post-indicators.css
 * 
 * Add to timeline: <link rel="stylesheet" href="/posts/assets/post-indicators.css">
 * Or append to existing styles.css / feed-fix.css
 */

/* ============================================================================
   POST TYPE INDICATOR — shared base
   ============================================================================ */

.post-type-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-type-indicator .iconify {
    flex-shrink: 0;
}

.post-type-indicator strong {
    font-weight: 600;
}

/* ============================================================================
   REPOST INDICATOR
   ============================================================================ */

.repost-indicator {
    background: rgba(59, 130, 246, 0.12);
    color: #94a3b8;
}

.repost-indicator .iconify {
    color: #60a5fa;
}

.repost-indicator strong {
    color: #bfdbfe;
}

/* ============================================================================
   COMMUNITY POST INDICATOR
   ============================================================================ */

.community-indicator {
    background: rgba(249, 201, 76, 0.12);
    color: #94a3b8;
}

.community-indicator .iconify {
    color: #F9C94C;
}

.community-indicator strong {
    color: #FBBF24;
}

.community-indicator .community-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.community-indicator .community-link:hover {
    color: #F28E1C;
    text-decoration: underline;
}

.community-indicator .community-link strong {
    color: #FBBF24;
    transition: color 0.2s ease;
}

.community-indicator .community-link:hover strong {
    color: #F28E1C;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 640px) {
    .post-type-indicator {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.post-mint-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.post-mint-badge--minted {
    color: #F9C94C;
    background: rgba(249, 201, 76, 0.08);
    border: 1px solid rgba(249, 201, 76, 0.3);
}
.post-mint-badge--minted:hover {
    background: rgba(249, 201, 76, 0.15);
    border-color: rgba(249, 201, 76, 0.55);
}
.post-mint-badge--pending {
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.25);
}
.post-mint-badge--failed {
    color: #f87171;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.3);
}