:root {
    --feed-bg: #ffffff;
    --feed-border: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --tag-bg: #f1f5f9;
    --tag-text: #475569;
    --highlight-color: #0f172a;
    --brand-blue: #2563eb;
    --discount-red: #fff1f2;
    --discount-red-text: #e11d48;
}

.pro-feed-container {
    background: var(--feed-bg);
    border: 1px solid var(--feed-border);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
}

.feed-header {
    padding: 16px 24px 0 24px;
    border-bottom: 1px solid var(--feed-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 20px 20px
}

.feed-header h2 {
    font-size: 1.6em;
    color: #222;
    letter-spacing: -.04em;
    line-height: 110%;
    font-weight: 700;
}

.live-indicator {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    animation: blink 2s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}

.feed-item {
    display: flex;
    padding: 20px 24px;
    border-bottom: 1px solid var(--feed-border);
    gap: 20px;
    transition: background 0.2s;
}

.feed-item:last-child {
    border-bottom: none;
}

.feed-item:hover {
    background: #fcfcfc;
}

.feed-col-logo {
    flex-shrink: 0;
    width: 80px;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--feed-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.logo-circle img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.logo-circle span {
    font-weight: bold;
    color: var(--text-secondary);
}

.feed-col-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.content-meta {
    font-size: 13px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.merchant-link {
    font-weight: 700;
    color: var(--highlight-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.merchant-link:hover {
    color: var(--brand-blue);
}

.meta-sep {
    margin: 0 8px;
    color: #cbd5e1;
}

.time-stamp {
    color: #94a3b8;
}

.content-summary {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 4px;
}

.content-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-pill {
    font-size: 11px;
    background: var(--tag-bg);
    color: var(--tag-text);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
}

.feed-col-value {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding-top: 20px;
}

.discount-badge {
    background: var(--discount-red);
    color: var(--discount-red-text);
    border: 1px solid #fecdd3;
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 60px;
}

.disc-val {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.disc-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2px;
}

.action-btn {
    font-size: 13px;
    color: var(--brand-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

@media (max-width: 640px) {
    .feed-item {
        flex-direction: column;
        gap: 12px;
        position: relative;
    }

    .feed-col-value {
        width: auto;
        position: absolute;
        top: 20px;
        right: 20px;
        align-items: flex-end;
        padding-top: 0;
    }

    .feed-col-content {
        padding-right: 70px;
    }
}