/* Add custom CSS styles below */ 
.article--main{
  font-size: 20px;
}
.main-content h1{
  font-size: 40px;
}
/* إخفاء الزيادة */
.s-advertisement-content {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.s-advertisement-content-main {
  display: inline-block;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

/* نضع النص مرتين عشان يبقى مستمر بدون فراغ واضح */
.s-advertisement-content-main::after {
  content: "      "; /* مسافات أو نفس النص مرة تانية لو عايز تكرار حقيقي */
}

@keyframes marquee {
  0%   { transform: translateX(0);      }
  100% { transform: translateX(-50%);   }  /* -50% لأننا بنعرض النص مرتين */
}