.ds-topic-meta-actions{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:10px;
    margin-top:10px;
}
.ds-topic-meta-actions .ds-view-count{
    min-width:0;
    margin:0;
    color:#666;
    font-size:13px;
    line-height:1.35;
}
.ds-topic-meta-actions .ds-view-count strong{
    color:#111;
}
.ds-topic-save-inline{
    appearance:none;
    border:1px solid #111;
    border-radius:8px;
    background:#fff;
    color:#111;
    padding:7px 10px;
    font:inherit;
    font-size:12px;
    font-weight:850;
    line-height:1;
    white-space:nowrap;
    cursor:pointer;
}
.ds-topic-save-inline.is-saved{
    background:#111;
    color:#fff;
}
.ds-topic-save-feedback{
    grid-column:1/-1;
    min-height:0;
    margin-top:-4px;
    font-size:11px;
    color:#666;
}
.ds-topic-save-feedback:empty{
    display:none;
}
@media(max-width:340px){
    .ds-topic-meta-actions{
        gap:8px;
    }
    .ds-topic-meta-actions .ds-view-count{
        font-size:12px;
    }
    .ds-topic-save-inline{
        font-size:11px;
        padding:6px 8px;
    }
}

/* Single-post viewer compatibility: retain the legacy stats/save row without turning it into a feed. */
.ds-single-card .ds-topic-meta-actions.ds-topic-save-row{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    margin:14px 0 10px;
}


/* Save + Share live together as secondary actions; vote remains the primary action. */
.ds-topic-inline-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:6px;
}
.ds-topic-share-inline{
    appearance:none;
    border:1px solid #d7d7d7;
    border-radius:8px;
    background:#fff;
    color:#111;
    padding:7px 10px;
    font:inherit;
    font-size:12px;
    font-weight:850;
    line-height:1;
    white-space:nowrap;
    cursor:pointer;
}
.ds-topic-share-inline:disabled{
    opacity:.55;
    cursor:default;
}
.ds-topic-share-feedback{
    grid-column:1/-1;
    min-height:0;
    margin-top:-4px;
    font-size:11px;
    color:#666;
}
.ds-topic-share-feedback:empty{
    display:none;
}
@media(max-width:340px){
    .ds-topic-inline-actions{gap:4px;}
    .ds-topic-share-inline{font-size:11px;padding:6px 8px;}
}
