#fw-section-custom-html-a154f4c5-4726-4553-b3a8-0bffa1221780 {

/* العنوان */
.playlist-title {
  text-align: center;
  font-size: 28px;
  color: #ffd35f;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 189, 66, 0.6);
}

/* الحاوية */
.playlist-wrapper {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 18px;
  background: linear-gradient(145deg, #1c1c1c, #262626);
  border-radius: 18px;
  border: 2px solid #574b2a;
  box-shadow: 0 0 25px rgba(0,0,0,0.45);
  flex-wrap: wrap;
}

/* الفيديو الرئيسي */
.main-video-frame {
  flex: 2;
  min-width: 300px;
}

.main-video-frame iframe {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  border: 2px solid #3b3b3b;
}

/* القائمة الجانبية */
.sidebar-videos {
  flex: 1;
  min-width: 230px;
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 5px;
}

/* عنصر الفيديو */
.video-item {
  display: flex;
  gap: 10px;
  padding: 8px;
  cursor: pointer;
  background: #2e2b23;
  border-radius: 10px;
  border: 1px solid #6b5c39;
  transition: 0.25s;
}

.video-item:hover {
  background: #3a352b;
  transform: scale(1.03);
}

.thumb {
  width: 110px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.video-title {
  font-size: 14px;
  color: #fff8dd;
  line-height: 1.3;
}

/* موبايل */
@media (max-width: 600px) {

  .playlist-title {
    font-size: 22px;
  }

  .main-video-frame iframe {
    height: 250px;
  }

  .sidebar-videos {
    max-height: 220px;
  }

  .thumb {
    width: 90px;
    height: 55px;
  }

  .video-title {
    font-size: 12px;
  }
}

}