.post__horizontal .post__thumbnail {
    float: right;
    width: 150px;
    position: relative;
    z-index: 20;
}

  /* تصميم الأيقونة */
  .telegram-saudione {
    position: fixed;
    width: 200px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3f8f00;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: slide-up 1s ease-in-out forwards, bounce 2s infinite ease-in-out;
    z-index: 1000;
  }

  /* تأثير الانزلاق للأعلى */
  @keyframes slide-up {
    from {
      bottom: -50px;
    }
    to {
      bottom: 20px;
    }
  }

  /* تأثير النبض */
  @keyframes bounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(-10px);
    }
  }

  /* تأثير عند التحويم */
  .telegram-saudione:hover {
    background-color: #386b08;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }