 /* Telegram post card */
  .tg-post{
    background:#fff;
    border:1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    display:flex; flex-direction:column; gap:12px;
  }
  .tg-post-header{
    display:flex; align-items:center; gap:10px;
  }
  .tg-post-avatar{
    width:42px; height:42px; border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
  }
  .tg-post-channel{ font-weight:700; font-size:14.5px; }
  .tg-post-sub{ font-size:12px; color: var(--text-soft); }
  .tg-post-verified{
    width:16px; height:16px;
    background: var(--tg-blue);
    border-radius:50%;
    display:inline-flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .tg-post-verified svg{ width:10px; height:10px; stroke:#fff; stroke-width:2.5; }
  .tg-post-body{ font-size:14.5px; line-height:1.6; }
  .tg-post-body strong{ font-weight:700; }
  .tg-post-img{ border-radius:12px; width:100%; max-height:280px; object-fit:cover; }
  .tg-post-footer{
    display:flex; align-items:center; justify-content:space-between;
    font-size:12.5px; color: var(--text-soft);
  }
  .tg-post-reactions{
    display:flex; gap:10px;
  }
  .tg-reaction{
    display:flex; align-items:center; gap:4px;
    background: var(--bg-soft);
    padding:4px 10px; border-radius:20px;
    font-size:13px; font-weight:500;
  }

  /* Fact card */
  .fact-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:20px;
    display:flex; gap:16px;
  }
  .fact-num{
    font-size:40px; font-weight:900; line-height:1;
    flex-shrink:0; width:48px; text-align:center;
    opacity:.15;
  }
  .fact-body h3{ font-size:16px; font-weight:700; margin-bottom:8px; }
  .fact-body p{ font-size:14px; color: var(--text-soft); line-height:1.65; }
  .fact-tag{
    display:inline-block; margin-top:10px;
    font-size:11px; font-weight:700; padding:2px 8px; border-radius:5px;
    opacity:.85;
  }
