.elementor .live-category-title{display: flex;
  align-items: center;
  gap: 10px;
}

.live-category-title::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: #E91E63;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.5);
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
  0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.5);
  }

  50% {
      transform: scale(1.15);
  }

  70% {
      transform: scale(1);
      box-shadow: 0 0 0 8px rgba(233, 30, 99, 0);
  }

  100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
  }\n}.elementor .blog-categories-scroll{grid-template-columns:repeat(20, 1fr);grid-template-rows:repeat(1, 1fr);display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  width: 100%;
  gap: 10px;
  
  scrollbar-width: thin;
  scrollbar-color: #E91E63 transparent;
}

/* جلوگیری از شکستن آیتم‌ها */
.blog-categories-scroll > a {
  flex: 0 0 auto !important;
  width: 100px;
}

/* Chrome / Edge / Safari */
.blog-categories-scroll::-webkit-scrollbar {
  height: 3px;
}

.blog-categories-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.blog-categories-scroll::-webkit-scrollbar-thumb {
  background: #E91E63;
  border-radius: 10px;
}

.blog-categories-scroll::-webkit-scrollbar-thumb:hover {
  background: #c2185b;\n}