.leading-6 {
    text-align: right; /* Align all text content to the right */
    direction: rtl; /* Ensure proper Arabic layout */
}

.leading-6 .ql-video {
    float: right; /* Align the video to the right */
    margin-left: 20px; /* Add spacing between the video and the text */
    width: 50%; /* Adjust the video width */
    height: auto; /* Maintain the aspect ratio */
    display: inline-block; /* Ensure it behaves as a block-level element */
}

.leading-6 p {
    clear: both; /* Ensure the text starts below the video */
    margin-top: 10px; /* Add spacing above the paragraphs */
}

/* نخفي زر الإغلاق */
.salla-advertisement .ad-close {
  display: none !important;
}

/* النص نفسه */
.salla-advertisement h2 {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: slide-left 22s linear infinite; /* غير 25s حسب السرعة */
  position: relative;
}

/* الحركة */
@keyframes slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}