/**
 * Visual distinction for API-injected posts.
 *
 * Two targeting strategies:
 *   1. article.web4t-gpfa-remote-post  — themes using post_class()
 *   2. article:has([data-gpfa-remote]) — themes with hardcoded article classes
 */

article.web4t-gpfa-remote-post,
article:has([data-gpfa-remote]) {
    position: relative;
}

article.web4t-gpfa-remote-post::after,
article:has([data-gpfa-remote])::after {
    content: 'ADS';
    position: absolute;
    top: 8px;
    right: 8px;
    background: #3498db;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 3px;
    line-height: 1.4;
    pointer-events: none;
    z-index: 5;
}
