/* RT Identität — generischer Folgen-Button (helle Website-Flächen).
   Der Webplayer nutzt die programmatische API (window.rtiFollow) mit eigenem,
   auf den dunklen Player abgestimmten Stern-Styling. */
.rti-follow {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0, 0, 0, .2);
    background: #fff;
    color: #333;
    border-radius: 999px;
    padding: 5px 12px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    transition: border-color .12s ease, color .12s ease;
}
.rti-follow:hover { border-color: #c8102e; }
.rti-follow .rti-follow-ico { color: #c8102e; font-size: 15px; line-height: 1; }
.rti-follow.is-following {
    border-color: #c8102e;
    color: #c8102e;
    font-weight: 600;
}
.rti-follow[hidden] { display: none !important; }
