.workshop-wrapper {
  display: flex;
  gap: 40px;
}

/* LEFT SIDEBAR */
.workshop-sidebar {
  width: 260px;
}

.sidebar-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
}

.workshop-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workshop-item {
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 6px;
  text-align: left;
  transition: 0.3s;
}

.workshop-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.workshop-item.active {
  background: rgba(76, 184, 160, 0.15);
  font-weight: 600;
}

/* LIVE DOT */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 50%;
  margin-left: 6px;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  50% {
    opacity: 0.3;
  }
}

/* RIGHT CONTENT */
.workshop-content {
  flex: 1;
}

/* HIDE/SHOW */
.workshop-detail {
  display: none;
}

.workshop-detail.active {
  display: block;
}

/* CARD */
.workshop-card-new {
  display: flex;
  gap: 25px;
  align-items: center;

  padding: 25px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.workshop-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.workshop-img img {
  width: 240px;
  border-radius: 12px;
}

/* INFO */
.workshop-info h4 {
  margin-bottom: 10px;
}

/* LIVE BADGE */
.badge-live {
  display: inline-block;
  background: #ff3b3b;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .workshop-wrapper {
    flex-direction: column;
  }

  .workshop-sidebar {
    width: 100%;
  }

  .workshop-card-new {
    flex-direction: column;
    align-items: flex-start;
  }

  .workshop-img img {
    width: 100%;
  }
}
