/*======================================= Workshop Page Styling ================================== */
.workshop-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #001620 0%, #001e2b 100%);
}

.workshop-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    #001620,
    rgba(0, 22, 32, 0.7),
    transparent
  );
}

/* Glow Effect */

.workshop-hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(0, 237, 100, 0.15);
  filter: blur(160px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.workshop-card {
  background: #0b222c;
  border-radius: 20px;
  padding: 25px;
  transition: 0.4s;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 20px;
}

.workshop-card:hover {
  transform: translateY(-8px);
  background: #172d37;
  border-color: #00ed64;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.workshop-badge {
  background: rgba(0, 237, 100, 0.1);
  color: #00ed64;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero-subtitle {
  color: #9ca3af;
  font-size: 18px;
  max-width: 600px;
}

/* Image */

.workshop-img {
  width: 100%;
  height: 500px;
  object-fit: fill;
  border-radius: 16px;
}

/* Content */

.workshop-content {
  padding-left: 20px;
}

@media (max-width: 992px) {
  .workshop-content {
    padding-left: 0;
  }
}

/* Badge */

.live-badge {
  background: rgba(0, 237, 100, 0.15);
  color: #00ed64;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Title */

.workshop-card h3 {
  font-weight: 700;
}

/* Subtitle */

.workshop-subtitle {
  color: #00ed64;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Description */

.workshop-desc {
  color: #8aa3b0;
  line-height: 1.6;
}

/* Meta */

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 10px;
  color: #8aa3b0;
  font-size: 14px;
}

/* Features */

.workshop-features {
  margin-top: 18px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.workshop-features span {
  background: #112d3a;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #8aa3b0;
}

/* Button */

.btn-primary-custom {
  background: linear-gradient(90deg, #00ed64, #00c853);
  border: none;
  color: #002108;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 237, 100, 0.4);
}

.workshop-filter {
  background: #0b222c;
  padding: 12px;
  border-radius: 50px;
  display: inline-flex;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: transparent;
  border: none;
  color: #8aa3b0;
  transition: 0.3s;
}

.filter-btn.active {
  background: #00ed64;
  color: #001620;
}
