/* Reusable gold-circle check badge.
 *
 * A visual primitive shared across pages where we want to highlight a positive
 * feature/event with the brand's gold gradient. The track page timeline dots
 * (.track-event::before in track.css) follow the same design language but use
 * pseudo-elements - identical look, different host element.
 *
 * Usage: <span class="check-badge" aria-hidden="true"></span>  (empty content,
 *        the ✓ is injected by ::before so callers don't need to repeat it).
 */
.check-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 0 0 4px rgba(249, 231, 159, 0.1);
}
.check-badge::before {
    content: '✓';
    color: var(--bg);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}
