/* ============================================================
   SF Post Metadata  --  Views, favorites, date, tags
   ============================================================ */

.sf-post-meta {
    margin: 12px 0;
}

.sf-post-meta__stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.sf-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #9ca3af;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.sf-meta-icon {
    opacity: 0.7;
    flex-shrink: 0;
}

.sf-meta-views .sf-meta-icon {
    color: #6b7280;
}

.sf-meta-favorites {
    color: #e8596e;
}
.sf-meta-favorites .sf-meta-icon {
    opacity: 0.85;
}

.sf-meta-date .sf-meta-icon {
    color: #6b7280;
}

/* ---- Tag pills ---- */
.sf-post-meta__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.sf-tag-pill {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 154, 232, 0.12);
    color: #6da7e0;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    border-radius: 14px;
    text-decoration: none;
    line-height: 1.3;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.sf-tag-pill:hover {
    background: rgba(59, 154, 232, 0.25);
    color: #93c5fd;
    text-decoration: none;
}

/* ---- Inline variant ---- */
.sf-post-meta--inline {
    display: inline-flex;
    margin: 0;
}

/* ---- Content card integration ---- */
.sf-card__meta-row .sf-meta-item {
    font-size: 12px;
    gap: 3px;
}
.sf-card__meta-row .sf-meta-icon {
    width: 12px;
    height: 12px;
}

/* ---- Mobile ---- */
@media (max-width: 600px) {
    .sf-post-meta__stats {
        gap: 12px;
    }
    .sf-meta-item {
        font-size: 12px;
    }
    .sf-tag-pill {
        font-size: 11px;
        padding: 3px 10px;
    }
}
