/* ============================================================================
   📦 CORE ALGORITHMIC DISCOVERY FEED GRID LAYOUTS (CYBER DARK DETAILED MATRIX)
   ============================================================================ */

/* Main feed loop container wrapper alignment matrix */
#homepageFeedTimelineContainer {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 500px; /* Kept tight and modern for elegant mobile swiping views */
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

/* Individual organic loop card container item row block */
.feed-loop-card {
    background-color: #09090b; /* Pitch-black background surface */
    border: 1px solid #18181b; /* Deep charcoal structural border lines */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ⚡ PREMIUM BOOSTED ACCENT: Highlights paid sponsored postings with sharp amber gold */
.feed-loop-card.premium-boosted {
    border: 1.5px solid #d97706; /* Solid Amber Gold frame */
    box-shadow: 0 4px 22px rgba(217, 119, 6, 0.15); /* Clean gold glow */
    background: linear-gradient(to bottom, #0e0d0b 0%, #09090b 100%); /* Deep charcoal gold tint */
}

/* Media viewport framing wrapper layout structure */
.feed-card-media-wrapper {
    width: 100%;
    position: relative;
    background-color: #000000; /* Backing keeps video frames clean if aspect ratios vary */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blazing fast optimized images pipeline rendering view layer */
.feed-image-renderer {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* Immersive video playback loop cell canvas controls configuration */
.feed-video-player {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* Text payload description details canvas padding allocations */
.feed-card-body-details {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Split header alignment framework layer */
.feed-card-header-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Category badge string tags (Deep Gold theme instead of bright yellow) */
.feed-badge-category {
    font-size: 11px;
    font-weight: 700;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    background-color: rgba(245, 158, 11, 0.1); /* Transparent amber backing */
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Bold transaction pricing tags metrics */
.feed-badge-price {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff; /* Crisp white pricing tag text */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Primary item header text strings */
.feed-card-main-title {
    font-size: 15px;
    font-weight: 800;
    color: #000000; /* Thick black text for legibility on white cards */
    margin: 2px 0 0 0;
    line-height: 1.3;
}

/* Body content listing overview layout settings */
.feed-card-text-content {
    font-size: 13.5px;
    font-weight: 600;
    color: #000000; /* Thick black text for legibility on white cards */
    line-height: 1.5;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Split footer geolocation alignment rules context */
.feed-card-footer-location-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #18181b; /* Dark divider line */
}

/* 💎 CYBER ELECTRIC BLUE ACCENTS: Beautiful profile details indicators */
.feed-location-marker {
    font-size: 11px;
    font-weight: 600;
    color: #38bdf8; /* Cyber electric blue location label */
}

/* Real-time sync log status indicators */
.feed-timestamp-tracker {
    font-size: 10px;
    font-weight: 500;
    font-family: monospace;
    color: #0284c7; /* Darker electric blue for background logs info */
}

