.flc-wrap{
  border: 1px solid #ec0001;
  border-radius: 16px;
  padding: 13px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
/* النقطتين فوق */
.flc-live-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.flc-live-label .flc-text {
  font-weight: 500;
  font-size: 26px;
}
.flc-signal {
  position: relative;
  width: 20px;
  height: 50px;
  flex: 0 0 20px;
}
.flc-dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  background: #ec0001;
}

/* الكارت */
/* .flc-card {
  
} */
.flc-thumb {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
.flc-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.flc-title {
  font-size: 28px;
  line-height: 1.25;
  margin: 14px 0 8px;
}
.flc-title a {
  text-decoration: none;
  color: #1c2f5d;
}

/* قائمة التحديثات */
.flc-updates-wrap {
  position: relative;
  max-height: 280px;
  overflow: hidden;
}
.flc-updates {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

/* عنصر التحديث: عمود نقطة + عمود نص */
.flc-update {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  /* padding: 10px 0 14px; */
}

/* عمود النقطة */
.flc-bullet-wrap {
  position: relative;
  /* width: 14px; */
  flex-shrink: 0;
  margin-top: 5px;
}

/* النقطة */
.flc-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cc0100;
  display: block;
  position: relative;
  z-index: 2;
}

/* الخط الفضي من أسفل النقطة حتى العنصر التالي */
.flc-bullet-wrap::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: -44px;
  width: 1px;
  left: 5px;
  background: #e5e7eb;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* إخفاء الخط لآخر عنصر */
.flc-update.is-last .flc-bullet-wrap::after {
  display: none;
}

/* عمود المحتوى */
.flc-update-text {
  flex: 1;
}
.flc-time {
  display: block;
  color: #cc0100;
  font-weight: 600;
  font-size: 14px;
}
.flc-u-title {
  color: #1f2937;
  font-weight: 400;
  line-height: 1.5;
  font-size: 17px;
  margin-bottom: 10px;
}

/* التدرج السفلي */
.flc-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 90%);
  pointer-events: none;
}

/* مشاهدة جميع التحديثات */
.flc-more-wrap {
  margin-top: 10px;
  text-align: center;
}
.flc-more {
  display: inline-block;
  text-decoration: underline !important;
  font-weight: 600;
  color: #111827;
  font-size: 16px;
}
.flc-count {
  opacity: 0.8;
}